12 lines
286 B
Bash
Executable File
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
|