Files
distant-horizons-sharded/buildAll.bat
T
Dominik Marcinowski cb8e4231a5 Update buildAll.bat
2023-07-07 08:03:00 +00:00

16 lines
486 B
Batchfile

@echo off & setlocal enabledelayedexpansion
@rem Loop trough everything in the version properties folder
for %%f in (versionProperties\*) do (
@rem Get the name of the version that is going to be compiled
set version=%%~nf
@rem Clean out the folders and build it
echo Cleaning workspace to build !version!
call .\gradlew.bat clean -PmcVer="!version!" --no-daemon
echo Building !version!
call .\gradlew.bat build -PmcVer="!version!" --no-daemon
)
endlocal