test
All checks were successful
Build and Push Minecraft Docker Images on Debian-base update / poll-debian-base-and-detect-changes (push) Successful in 11s
Build and Push Minecraft Docker Images on Debian-base update / Build and Push testing-fabric (push) Successful in 20s
Build and Push Minecraft Docker Images on Debian-base update / Build and Push testing-neoforged (push) Successful in 23s
Build and Push Minecraft Docker Images on Debian-base update / Build and Push vanilla (push) Successful in 20s
Build and Push Minecraft Docker Images on Debian-base update / Build and Push fabric (push) Successful in 1m10s
Build and Push Minecraft Docker Images on Debian-base update / Build and Push testing-vanilla (push) Successful in 1m5s
Build and Push Minecraft Docker Images on Debian-base update / Build and Push neoforged (push) Successful in 1m26s
Build and Push Minecraft Docker Images on Debian-base update / generate-changelogs (push) Successful in 10s
Build and Push Minecraft Docker Images on Debian-base update / generate-build-info (push) Successful in 34s

This commit is contained in:
2025-12-18 10:19:23 -08:00
parent 9bd883c089
commit fe01d8b442

View File

@@ -104,15 +104,25 @@ cd $MC_DIR
# exec ./run-$NEOFORGED_VERSION.sh nogui
# if [ "$FIRST_RUN" = "true" ]; then
# echo "INFO ! First bootstrap run (datapack generation)"
# "./run-${NEOFORGED_VERSION}.sh"
# echo "INFO ! First bootstrap run"
# ./run-${NEOFORGED_VERSION}.sh
# echo "INFO ! Bootstrap complete"
# touch "$BOOTSTRAP_MARKER"
# else
# exec "./run-${NEOFORGED_VERSION}.sh" nogui
# exec ./run-${NEOFORGED_VERSION}.sh nogui
# fi
if [ "$FIRST_RUN" = "true" ]; then
echo "INFO ! First bootstrap run"
echo "INFO ! First bootstrap run (datapack generation)"
"./run-${NEOFORGED_VERSION}.sh"
BOOTSTRAP_RC=$?
if [ $BOOTSTRAP_RC -ne 0 ]; then
echo "ERROR ! Bootstrap failed (exit code $BOOTSTRAP_RC)"
echo "ERROR ! World/datapacks are incomplete"
exit 1
fi
echo "INFO ! Bootstrap complete"
touch "$BOOTSTRAP_MARKER"
else