mirror of
https://github.com/m-lamonaca/script-launcher.git
synced 2025-04-05 18:06:28 +00:00
19 lines
413 B
PowerShell
19 lines
413 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 scrl)
|
|
$action = $exists ? 'update' : 'install'
|
|
|
|
dotnet tool $action -g ScriptLauncher --add-source ./nupkg --ignore-failed-sources
|
|
|