Detect Fabric FTB App packs from run.sh (#4250)

Co-authored-by: LCB <me@lbellows.com>
This commit is contained in:
LB
2026-08-31 21:10:13 -05:00
committed by GitHub
co-authored by LCB
parent dd7644daf5
commit 430805da64
+3 -3
View File
@@ -140,9 +140,9 @@ if [[ $SERVER = run.sh ]]; then
elif grep -q forge "$SERVER"; then elif grep -q forge "$SERVER"; then
export FAMILY=FORGE export FAMILY=FORGE
export TYPE=FORGE export TYPE=FORGE
elif grep -q fabric run.s; then elif grep -q fabric "$SERVER"; then
export FAMILY=FABRIC export FAMILY=FABRIC
export TYPE=FABRIC export TYPE=FABRIC
else else
logError "Unrecognized loader type in $SERVER" logError "Unrecognized loader type in $SERVER"
cat "$SERVER" cat "$SERVER"