1
0
mirror of https://github.com/zumbiepig/MineXLauncher.git synced 2025-06-26 10:05:10 +00:00

add web to offline converter, upload eaglercraft zeta 1.11 offline

This commit is contained in:
zumbiepig
2024-09-19 19:04:12 -07:00
parent 223e3ad44c
commit e3a2dda82e
7 changed files with 46306 additions and 134 deletions

6
build-offline/makeOffline.sh Executable file
View File

@@ -0,0 +1,6 @@
#!/bin/sh
if [ ! -e "$CLASSES_PATH" ] || [ ! -e "$ASSETS_PATH" ] || [ ! -e "$LANG_PATH" ] || [ -z "$OUTPUT_PATH" ]; then
echo "Error: Missing required variables.\nYou need: CLASSES_PATH, ASSETS_PATH, OUTPUT_PATH, LANG_PATH"
exit 1
fi
java -cp "makeOffline.jar" net.lax1dude.eaglercraft.v1_8.buildtools.workspace.MakeOfflineDownload "template.html" "$CLASSES_PATH" "$ASSETS_PATH" "/dev/null" "$OUTPUT_PATH" "$LANG_PATH"