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

14 lines
239 B
Bash
Raw Permalink Normal View History

2022-06-10 17:45:24 +02:00
#!/usr/bin/env bash
dotnet pack ./src -o ./nupkg
2023-01-27 16:27:08 +01:00
EXISTS=$(command -v scrl)
2022-06-10 17:45:24 +02:00
if [ "$EXISTS" ]; then
ACTION="update"
else
ACTION="install"
fi
dotnet tool "$ACTION" -g ScriptLauncher --add-source ./nupkg --ignore-failed-sources