Update install scripts to install or update

This commit is contained in:
Marcello 2022-06-10 17:10:41 +02:00
parent 5c24b9ff09
commit 3daa10f3f8
2 changed files with 19 additions and 1 deletions

View file

@ -1,2 +1,7 @@
dotnet pack ./src -o ./nupkg
dotnet tool install -g ScriptLauncher --add-source ./nupkg --ignore-failed-sources
$exists = $(Test-CommandExists script-launcher)
$action = $exists ? 'update' : 'install'
dotnet tool $action -g ScriptLauncher --add-source ./nupkg --ignore-failed-sources

13
dotnet-install-tool.sh Normal file
View file

@ -0,0 +1,13 @@
#! /usr/bin/env bash
dotnet pack ./src -o ./nupkg
EXISTS=$(command -v script-launcher)
if $EXISTS; then
ACTION="update"
else
ACTION="install"
fi
dotnet tool "$ACTION" -g ScriptLauncher --add-source ./nupkg --ignore-failed-sources