[mc] Remove -u from unzip in FTB for Alpine compatibility

For #132
This commit is contained in:
Geoff Bourne
2017-03-09 18:56:19 -06:00
parent 55801ac11c
commit 97040f61ed

View File

@@ -189,7 +189,7 @@ function installFTB {
echo "Unpacking FTB server modpack ${srv_modpack} ..."
local ftb_dir=/data/FeedTheBeast
mkdir -p ${ftb_dir}
unzip -u -o ${srv_modpack} -d ${ftb_dir}
unzip -o ${srv_modpack} -d ${ftb_dir}
cp -f /data/eula.txt ${ftb_dir}/eula.txt
FTB_SERVER_START=${ftb_dir}/ServerStart.sh
chmod a+x ${FTB_SERVER_START}