From 430805da64f8b8a4569ff84b3c1ef807caa02ef3 Mon Sep 17 00:00:00 2001 From: LB Date: Mon, 31 Aug 2026 22:10:13 -0400 Subject: [PATCH] Detect Fabric FTB App packs from run.sh (#4250) Co-authored-by: LCB --- scripts/start-deployFTBA | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/scripts/start-deployFTBA b/scripts/start-deployFTBA index ed4a6fe6..15505bec 100755 --- a/scripts/start-deployFTBA +++ b/scripts/start-deployFTBA @@ -140,9 +140,9 @@ if [[ $SERVER = run.sh ]]; then elif grep -q forge "$SERVER"; then export FAMILY=FORGE export TYPE=FORGE - elif grep -q fabric run.s; then - export FAMILY=FABRIC - export TYPE=FABRIC + elif grep -q fabric "$SERVER"; then + export FAMILY=FABRIC + export TYPE=FABRIC else logError "Unrecognized loader type in $SERVER" cat "$SERVER"