From 7195c98784f3e04fc2d1aa8d0446419385f0ba8d Mon Sep 17 00:00:00 2001 From: Marcel Stangenberger Date: Wed, 23 Jul 2025 15:13:59 +0200 Subject: [PATCH] Fixed variable names --- deploy.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/deploy.sh b/deploy.sh index 74efc85..cf44650 100644 --- a/deploy.sh +++ b/deploy.sh @@ -16,7 +16,7 @@ Exec() { install) echo -e "${GREEN}Starting installation of $1${NOCOL}" sleep 2 - bash -c "$(curl -fsSL $REPO/$1/install.sh)" + bash -c "$(curl -fsSL $CODE/$1/install.sh)" exit 0;; setup) echo -n "Git username: " @@ -26,7 +26,7 @@ Exec() { echo -e "${GREEN}Starting setup of $1${NOCOL}" sleep 2 curl -u $USER:$PASS -so /tmp/$1.tmp $SECRET/$1/setup.env - bash -c "$(curl -fsSL $REPO/$1/setup.sh)" + bash -c "$(curl -fsSL $CODE/$1/setup.sh)" rm -f /tmp/$1.tmp exit 0;; *)