first commit

This commit is contained in:
2025-07-04 01:04:19 +02:00
commit 5d340a6711
6 changed files with 106 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
#!/bin/bash
EXEC=server.out
echo "[Info] Downloading latest server version..."
wget https://github.com/surrealtm/Glassminers/releases/latest/download/GMServer.out -O "$EXEC"
if [ $? -ne 0 ]; then
echo "[Error] Download failed! Aborting."
exit 1
fi
chmod +x "$EXEC"
echo "[Info] Download completed successfully."