update buildall scripts to work with new forgix

This commit is contained in:
James Seibel
2026-04-11 21:51:06 -05:00
parent a959c7220b
commit 8e45358aad
2 changed files with 4 additions and 2 deletions
+2 -1
View File
@@ -3,6 +3,7 @@
echo "==================== Note: All build jars will be in the folder called 'buildAllJars' ===================="
mkdir -p buildAllJars
rm -rf buildAllJars/*
rm -rf build/forgix/*
# Loop trough everything in the version properties folder
for d in versionProperties/*; do
@@ -24,5 +25,5 @@ for d in versionProperties/*; do
if [ $? != 0 ]; then continue; fi
echo "==================== Moving jar ===================="
mv build/merged/*.jar buildAllJars/
mv build/forgix/*.jar buildAllJars/
done
+2 -1
View File
@@ -6,6 +6,7 @@
echo ==================== Note: All build jars will be in the folder called 'buildAllJars' ====================
mkdir buildAllJars
del buildAllJars/*
del build/forgix/*
@rem Loop trough everything in the version properties folder
for %%f in (versionProperties\*) do (
@@ -23,7 +24,7 @@ for %%f in (versionProperties\*) do (
call .\gradlew.bat mergeJars -PmcVer="!version!"
echo ==================== Moving jar ====================
move build\merged\*.jar buildAllJars\
move build\forgix\*.jar buildAllJars\
)
endlocal