[enhancement] Faster workspace setup

This commit is contained in:
Xiaro 2020-12-08 11:55:16 -05:00
parent 55008ea0ad
commit a367dc5708
No known key found for this signature in database
GPG Key ID: 996D265D6E155377
1 changed files with 3 additions and 3 deletions

View File

@ -43,9 +43,9 @@ echo "[$(date +"%H:%M:%S")] Downloaded git submodules!"
#
echo "[$(date +"%H:%M:%S")] Running gradlew build without daemon..."
./gradlew --no-daemon build || {
echo "[$(date +"%H:%M:%S")] ERROR: Running gradlew build failed! Run './gradlew --no-daemon build' manually"
echo "[$(date +"%H:%M:%S")] Running gradlew classes without daemon..."
./gradlew --no-daemon classes || {
echo "[$(date +"%H:%M:%S")] ERROR: Running gradlew build failed! Run './gradlew --no-daemon classes' manually"
exit 1
}