script-launcher/install-as-dotnet-tool.ps1

20 lines
413 B
PowerShell
Raw Permalink Normal View History

2023-01-27 16:27:08 +01:00
#!/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
2023-01-27 16:27:08 +01:00
$exists = $(Test-CommandExists scrl)
$action = $exists ? 'update' : 'install'
dotnet tool $action -g ScriptLauncher --add-source ./nupkg --ignore-failed-sources