Merge pull request #249 from duaneg/master

mc: run FTB installer from correct location
This commit is contained in:
Geoff Bourne 2018-09-18 22:40:58 -05:00 committed by GitHub
commit 715d9be403
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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