dev: automated commit - 2025-08-16 22:19:32

This commit is contained in:
Mariano Z. 2025-08-16 22:19:32 -03:00
parent e7b1106123
commit 77a15abcf4
Signed by: marianozunino
GPG key ID: 4C73BAD25156DACE
9 changed files with 95 additions and 12 deletions

View file

@ -6,7 +6,7 @@ BINARY_PATH="$TARGET_DIR/$BINARY_NAME"
if [ ! -x "$BINARY_PATH" ]; then
notify-send "📦 Installing $BINARY_NAME" "Installing from $MODULE_URL..."
GO111MODULE=on GOBIN="$TARGET_DIR" go install "$MODULE_URL@latest" || {
GO111MODULE=on GOBIN="$TARGET_DIR" go install "$MODULE_URL@master" || {
notify-send -u critical "Installation Failed" "Failed to install $BINARY_NAME from $MODULE_URL"
exit 1
}