Copy arguments passed to the mac pkg script to the gradle build

This commit is contained in:
Syer10
2021-05-29 01:01:36 -04:00
parent 9dcb902c91
commit f6372a6309

View File

@@ -10,6 +10,12 @@ else
scripts/SetupUnix.sh
fi
arguments=""
for var in "$@"
do
arguments+=" $var"
done
echo "Building Pkg package"
./gradlew packagePkg
./gradlew packagePkg "$arguments"