mirror of
https://github.com/DerTyp7/glassminers-server-docker.git
synced 2025-10-29 12:52:10 +01:00
12 lines
291 B
Bash
12 lines
291 B
Bash
#!/bin/bash
|
|
|
|
echo "[Info] Downloading latest server version..."
|
|
wget https://github.com/surrealtm/Glassminers/releases/latest/download/GMServer.out -O "server.out"
|
|
|
|
if [ $? -ne 0 ]; then
|
|
echo "[Error] Download failed! Aborting."
|
|
exit 1
|
|
fi
|
|
|
|
echo "[Info] Download completed successfully."
|