Use ./gradlew to test examples.

This commit is contained in:
Erik C. Thauvin 2019-04-01 23:20:26 -07:00
parent 8ece30494d
commit db5c3c6f47

View file

@ -12,6 +12,6 @@ normal=$(tput sgr0)
for ex in "java" "kotlin" "annotation-processor/java" "annotation-processor/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