mirror of
https://github.com/m-lamonaca/script-launcher.git
synced 2025-04-05 01:56:26 +00:00
13 lines
239 B
Bash
Executable file
13 lines
239 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
dotnet pack ./src -o ./nupkg
|
|
|
|
EXISTS=$(command -v scrl)
|
|
|
|
if [ "$EXISTS" ]; then
|
|
ACTION="update"
|
|
else
|
|
ACTION="install"
|
|
fi
|
|
|
|
dotnet tool "$ACTION" -g ScriptLauncher --add-source ./nupkg --ignore-failed-sources
|