From 97040f61ed388bd8b0e0cfd22e274a8a93217bff Mon Sep 17 00:00:00 2001 From: Geoff Bourne Date: Thu, 9 Mar 2017 18:56:19 -0600 Subject: [PATCH] [mc] Remove -u from unzip in FTB for Alpine compatibility For #132 --- minecraft-server/start-minecraft.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/minecraft-server/start-minecraft.sh b/minecraft-server/start-minecraft.sh index 8239c989..b6cebdfa 100755 --- a/minecraft-server/start-minecraft.sh +++ b/minecraft-server/start-minecraft.sh @@ -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}