mirror of
https://github.com/m-lamonaca/script-launcher.git
synced 2025-04-05 18:06:28 +00:00
Update install scripts to install or update
This commit is contained in:
parent
5c24b9ff09
commit
3daa10f3f8
2 changed files with 19 additions and 1 deletions
|
@ -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
13
dotnet-install-tool.sh
Normal 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
|
Loading…
Add table
Reference in a new issue