script-launcher/install-as-dotnet-tool.ps1
Marcello Lamonaca 4ef34ac2bc Fix: powershell install script
- add missing `Test-CommandExists` function definition
- add shebang
2022-06-13 09:23:50 +02:00

19 lines
427 B
PowerShell

#!/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)
$action = $exists ? 'update' : 'install'
dotnet tool $action -g ScriptLauncher --add-source ./nupkg --ignore-failed-sources