Fix: powershell install script

- add missing `Test-CommandExists` function definition
- add shebang
This commit is contained in:
Marcello 2022-06-13 09:23:50 +02:00
parent 36c79e02bc
commit 4ef34ac2bc

View file

@ -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'