From 9b67ff35747d5c9c9b0f97dd60a81b9add89a49a Mon Sep 17 00:00:00 2001 From: Colin Date: Tue, 11 Jun 2024 17:12:53 -0400 Subject: [PATCH] update go-glitch build process and install.sh --- install.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/install.sh b/install.sh index ad161b6..2c4f1dd 100644 --- a/install.sh +++ b/install.sh @@ -2,7 +2,7 @@ INSTALL_DIR="/usr/local/bin" BINARY_NAME="go-glitch" -BASE_URL="https://git.nixc.us/Nixius/go-glitch/raw/branch/main/dist" +BASE_URL="https://git.nixc.us/nixius/go-glitch/raw/branch/main/dist" # Supported architectures ARCHITECTURES=("linux/amd64" "linux/arm64" "linux/arm/v7" "darwin/amd64" "darwin/arm64") @@ -17,7 +17,7 @@ case $ARCH in *) echo "Unsupported architecture: $ARCH"; exit 1 ;; esac -BINARY_URL="${BASE_URL}/oculus_${OS}_${ARCH}" +BINARY_URL="${BASE_URL}/${BINARY_NAME}_${OS}_${ARCH}" echo "Downloading and installing $BINARY_NAME from $BINARY_URL..."