Copy-paste to fix previous copy-paste
All checks were successful
Test with Pytest / test (push) Successful in 25s
Release Notification / Send Notification (release) Successful in 4s

This commit is contained in:
2025-11-05 02:33:45 +02:00
parent 855cb45fa3
commit 36dfd89908

View File

@@ -7,7 +7,7 @@ openssl x509 -req -days 365 -in app/certs/cert.csr -signkey app/certs/cert.key -
LOCATION="$(pwd)" LOCATION="$(pwd)"
cat << EOF > $LOCATION/app/.env cat << EOF > "$LOCATION/app/.env"
# Environment variables # Environment variables
WOL_SECRET_KEY="changethis" WOL_SECRET_KEY="changethis"
WOL_USER_PASS="changethat" WOL_USER_PASS="changethat"
@@ -44,7 +44,7 @@ LATEST_RELEASE="$(curl -s https://git.konsthol.eu/api/v1/repos/konsthol/WOL-Ly/r
if [ "$ARCH" = "x86_64" ]; then if [ "$ARCH" = "x86_64" ]; then
wget -O app/wolServer https://git.konsthol.eu/konsthol/WOL-Ly/releases/download/"$LATEST_RELEASE"/wolServer-x86_64 wget -O app/wolServer https://git.konsthol.eu/konsthol/WOL-Ly/releases/download/"$LATEST_RELEASE"/wolServer-x86_64
elif [ "$ARCH" = "aarch64" ]; then elif [ "$ARCH" = "aarch64" ]; then
wget -O app/wolServer https://git.konsthol.eu/konsthol/WOL-Ly/releases/download/"$LATEST_RELEASE"/wolServer-arm wget -O app/wolServer https://git.konsthol.eu/konsthol/WOL-Ly/releases/download/"$LATEST_RELEASE"/wolServer-arm64
fi fi
chmod +x app/wolServer chmod +x app/wolServer