From ccac249c01646c0579718fdfecdf01d281201e26 Mon Sep 17 00:00:00 2001 From: Geoff Bourne Date: Sat, 23 May 2020 09:55:38 -0500 Subject: [PATCH] Added server-start.sh support for CF modpacks Fixes #540 --- start-deployFTB | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/start-deployFTB b/start-deployFTB index dfdab6fe..2a3c12b5 100644 --- a/start-deployFTB +++ b/start-deployFTB @@ -16,7 +16,12 @@ if [[ -z $FTB_SERVER_MOD ]]; then exit 2 fi -entryScriptExpr="-name ServerStart.sh -o -name ServerStartLinux.sh -o -name LaunchServer.sh" +entryScriptExpr=" + -name ServerStart.sh + -o -name ServerStartLinux.sh + -o -name LaunchServer.sh + -o -name server-start.sh + " if [[ -d ${FTB_BASE_DIR} ]]; then startScriptCount=$(find ${FTB_BASE_DIR} $entryScriptExpr |wc -l)