Using gradlew to test examples.

This commit is contained in:
Erik C. Thauvin 2019-04-01 19:30:53 -07:00
parent 5580ea6687
commit eb907c33fa

View file

@ -12,6 +12,6 @@ normal=$(tput sgr0)
for ex in "java" "kotlin"; do
cd "$dir/$ex" || exit 1
echo "> Project: ${color}${ex}${normal}"
gradle clean "$@" --console=plain --no-build-cache || exit 1
./gradlew clean "$@" --console=plain --no-build-cache || exit 1
echo
done