mirror of
https://github.com/m-lamonaca/script-launcher.git
synced 2025-04-05 18:06:28 +00:00
Fix: powershell install script
- add missing `Test-CommandExists` function definition - add shebang
This commit is contained in:
parent
36c79e02bc
commit
4ef34ac2bc
1 changed files with 13 additions and 1 deletions
|
@ -1,4 +1,16 @@
|
||||||
dotnet pack ./src -o ./nupkg
|
#!/usr/bin/env pwsh
|
||||||
|
|
||||||
|
function Test-CommandExists([Parameter(Mandatory)] [string] $command)
|
||||||
|
{
|
||||||
|
try {
|
||||||
|
if (Get-Command $command -ErrorAction Stop) { return $true }
|
||||||
|
} catch {
|
||||||
|
return $false
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
dotnet pack ./src -o ./nupkg
|
||||||
|
|
||||||
$exists = $(Test-CommandExists script-launcher)
|
$exists = $(Test-CommandExists script-launcher)
|
||||||
$action = $exists ? 'update' : 'install'
|
$action = $exists ? 'update' : 'install'
|
||||||
|
|
Loading…
Add table
Reference in a new issue