test
Some checks failed
Build and Push Minecraft Docker Images on Debian-base update / poll-debian-base-and-detect-changes (push) Successful in 17s
Build and Push Minecraft Docker Images on Debian-base update / Build and Push neoforged (push) Successful in 1m8s
Build and Push Minecraft Docker Images on Debian-base update / Build and Push fabric (push) Successful in 1m13s
Build and Push Minecraft Docker Images on Debian-base update / Build and Push testing-neoforged (push) Successful in 1m15s
Build and Push Minecraft Docker Images on Debian-base update / generate-changelogs (push) Has been cancelled
Build and Push Minecraft Docker Images on Debian-base update / Build and Push vanilla (push) Has been cancelled
Build and Push Minecraft Docker Images on Debian-base update / generate-build-info (push) Has been cancelled
Build and Push Minecraft Docker Images on Debian-base update / Build and Push testing-fabric (push) Has been cancelled
Build and Push Minecraft Docker Images on Debian-base update / Build and Push testing-vanilla (push) Has been cancelled

This commit is contained in:
2025-12-18 13:53:11 -08:00
parent 07ccd879a2
commit 4237ee8a94

View File

@@ -107,14 +107,14 @@ cd $MC_DIR
# echo "INFO ! First bootstrap run"
# ./run-${NEOFORGED_VERSION}.sh
# echo "INFO ! Bootstrap complete"
# touch "$BOOTSTRAP_MARKER"
# touch $BOOTSTRAP_MARKER
# else
# exec ./run-${NEOFORGED_VERSION}.sh nogui
# fi
if [ "$FIRST_RUN" = "true" ]; then
echo "INFO ! First bootstrap run (datapack generation)"
"./run-${NEOFORGED_VERSION}.sh"
./run-${NEOFORGED_VERSION}.sh
BOOTSTRAP_RC=$?
if [ $BOOTSTRAP_RC -ne 0 ]; then
@@ -124,9 +124,9 @@ if [ "$FIRST_RUN" = "true" ]; then
fi
echo "INFO ! Bootstrap complete"
touch "$BOOTSTRAP_MARKER"
touch $BOOTSTRAP_MARKER
else
exec "./run-${NEOFORGED_VERSION}.sh" nogui
exec ./run-${NEOFORGED_VERSION}.sh nogui
fi
exit