gtnh-server-docker/download.sh
2023-11-24 14:03:35 +03:00

12 lines
286 B
Bash
Executable File

#!/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