Fixed variable names

This commit is contained in:
2025-07-23 15:13:59 +02:00
parent da66f4c19f
commit 7195c98784

View File

@@ -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;;
*)