Added a welcome message when typing pm and added some ascii art
This commit is contained in:
parent
4b8d4eb0c6
commit
62caefcd22
9 changed files with 95 additions and 5 deletions
12
windows-install.ps1
Normal file
12
windows-install.ps1
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
$binary = "pm.exe"
|
||||
|
||||
if (Test-Path ".\$binary") {
|
||||
$binDir = "$HOME\.cargo\bin"
|
||||
if (!(Test-Path $binDir)) { New-Item -ItemType Directory -Path $binDir }
|
||||
|
||||
Write-Host "Installing $binary to $binDir..." -ForegroundColor Cyan
|
||||
Copy-Item ".\$binary" "$binDir"
|
||||
Write-Host "Done! Restart your terminal and type 'pm'." -ForegroundColor Green
|
||||
} else {
|
||||
Write-Host "Error: $binary not found in this folder." -ForegroundColor Red
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue