gtnh-server-docker/download.sh

12 lines
286 B
Bash
Raw Normal View History

2023-11-24 11:03:35 +00:00
#!/bin/sh
if [ ! -f GT_New_Horizons_2.4.0_Server_Java_17-20.zip ]; then
wget https://downloads.gtnewhorizons.com/ServerPacks/GT_New_Horizons_2.4.0_Server_Java_17-20.zip
fi
if [ ! -d app ]; then
mkdir app
cd app || exit
unzip ../GT_New_Horizons_2.4.0_Server_Java_17-20.zip
cd ..
fi