mirror of
https://github.com/DerTyp7/glassminers-server-docker.git
synced 2025-10-28 20:32:10 +01:00
15 lines
320 B
Bash
15 lines
320 B
Bash
#!/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."
|