From 3daa10f3f871c9940eb9854245ec21e98dbc161f Mon Sep 17 00:00:00 2001 From: Marcello Lamonaca Date: Fri, 10 Jun 2022 17:10:41 +0200 Subject: [PATCH] Update install scripts to install or update --- dotnet-install-tool.ps1 | 7 ++++++- dotnet-install-tool.sh | 13 +++++++++++++ 2 files changed, 19 insertions(+), 1 deletion(-) create mode 100644 dotnet-install-tool.sh diff --git a/dotnet-install-tool.ps1 b/dotnet-install-tool.ps1 index 4815a6d..b26f6ee 100644 --- a/dotnet-install-tool.ps1 +++ b/dotnet-install-tool.ps1 @@ -1,2 +1,7 @@ dotnet pack ./src -o ./nupkg -dotnet tool install -g ScriptLauncher --add-source ./nupkg --ignore-failed-sources \ No newline at end of file + +$exists = $(Test-CommandExists script-launcher) +$action = $exists ? 'update' : 'install' + +dotnet tool $action -g ScriptLauncher --add-source ./nupkg --ignore-failed-sources + diff --git a/dotnet-install-tool.sh b/dotnet-install-tool.sh new file mode 100644 index 0000000..bf94705 --- /dev/null +++ b/dotnet-install-tool.sh @@ -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