16 lines
690 B
Bash
Executable File
16 lines
690 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# Loop trough everything in the version properties folder
|
|
for d in versionProperties/*; do
|
|
# Get the name of the version that is going to be compiled
|
|
version=$(echo "$d" | sed "s/versionProperties\///" | sed "s/.properties//")
|
|
|
|
# Clean out the folders and build it
|
|
# (We could use "./" to run gradlew, but as it is a shell script im going to be running it with the "sh" command)
|
|
echo "Cleaning workspace to build $version"
|
|
sh gradlew clean -PmcVer=$version --no-daemon | true
|
|
echo "Building $version"
|
|
sh gradlew build -PmcVer=$version --no-daemon | true
|
|
# The "| true" at the end of those 2 are just to make sure the script continues even if a build fails
|
|
done
|