Fixed URL

This commit is contained in:
2025-07-21 16:23:38 +02:00
parent dbb2eb7393
commit 53d6aba5db

View File

@@ -1,8 +1,6 @@
#!/bin/bash
## Build v0.1
## By Marcel Stangenberger
REPO=https://git.xo.nl/marcel/deploy
REPO=https://git.xo.nl/marcel/deploy/raw/branch/master
GREEN='\033[0;32m'
RED='\033[0;31m'
NOCOL='\033[0m'
@@ -15,7 +13,7 @@ Fail() {
Exec() {
echo -e "${GREEN}Starting installation of $1${NOCOL}"
sleep 2
bash -c "$(curl -fsSL $REPO/raw/master/$1/install.sh)"
bash -c "$(curl -fsSL $REPO/$1/install.sh)"
exit 0
}