update update.sh

Signed-off-by: Rachel Powers <508861+Ryex@users.noreply.github.com>
This commit is contained in:
Rachel Powers 2023-05-10 21:03:19 -07:00
parent 651ff8356c
commit 030c5e70de
No known key found for this signature in database
GPG Key ID: E10E321EB160949B

View File

@ -46,13 +46,15 @@ python updateForge.py || fail_in
python updateFabric.py || fail_in
python updateQuilt.py || fail_in
python updateLiteloader.py || fail_in
python updateJava.py || fail_in
if [ "${DEPLOY_TO_GIT}" = true ] ; then
upstream_git add mojang/version_manifest_v2.json mojang/versions/* || fail_in
upstream_git add mojang/version_manifest_v2.json mojang/java_all.json mojang/versions/* || fail_in
upstream_git add forge/*.json forge/version_manifests/*.json forge/installer_manifests/*.json forge/files_manifests/*.json forge/installer_info/*.json || fail_in
upstream_git add fabric/loader-installer-json/*.json fabric/meta-v2/*.json fabric/jars/*.json || fail_in
upstream_git add quilt/loader-installer-json/*.json quilt/meta-v3/*.json quilt/jars/*.json || fail_in
upstream_git add liteloader/*.json || fail_in
upstream_git add java_runtime/adoptium/available_releases.json java_runtime/adoptium/versions/*.json java_runtime/azul/packages.json java_runtime/azul/versions/*.json || fail_in
if ! upstream_git diff --cached --exit-code ; then
upstream_git commit -a -m "Update ${currentDate}" || fail_in
upstream_git push || exit 1
@ -67,6 +69,7 @@ python generateForge.py || fail_out
python generateFabric.py || fail_out
python generateQuilt.py || fail_out
python generateLiteloader.py || fail_out
python generageJava.py || fail_out
python index.py || fail_out
if [ "${DEPLOY_TO_GIT}" = true ] ; then
@ -75,6 +78,7 @@ if [ "${DEPLOY_TO_GIT}" = true ] ; then
launcher_git add net.fabricmc.fabric-loader/* net.fabricmc.intermediary/* || fail_out
launcher_git add org.quiltmc.quilt-loader/* || fail_out # TODO: add Quilt hashed, once it is actually used
launcher_git add com.mumfrey.liteloader/* || fail_out
launcher_git add net.minecraft.java/* || fail_out
if ! launcher_git diff --cached --exit-code ; then
launcher_git commit -a -m "Update ${currentDate}" || fail_out