From ebe0a30c1474cf316690189f50a24a403607165b Mon Sep 17 00:00:00 2001 From: Duane Griffin Date: Wed, 19 Sep 2018 11:27:34 +1200 Subject: [PATCH] mc: run FTB installer from correct location We have pushd'ed into the directory so do not prefix the shell script with the directory name. --- minecraft-server/start-deployFTB | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/minecraft-server/start-deployFTB b/minecraft-server/start-deployFTB index e70ad1b0..a6310a51 100755 --- a/minecraft-server/start-deployFTB +++ b/minecraft-server/start-deployFTB @@ -87,11 +87,11 @@ fi if [ -e ${FTB_DIR}/FTBInstall.sh ]; then pushd ${FTB_DIR} - sh ${FTB_DIR}/FTBInstall.sh + sh FTBInstall.sh popd elif [ -e ${FTB_DIR}/Install.sh ]; then pushd ${FTB_DIR} - sh ${FTB_DIR}/Install.sh + sh Install.sh popd fi