Added script to run all examples.

This commit is contained in:
Erik C. Thauvin 2018-07-07 18:30:57 -07:00
parent 2f96e48186
commit ff77b4e0b6
4 changed files with 17 additions and 45 deletions

17
examples/examples.sh Normal file
View file

@ -0,0 +1,17 @@
#!/bin/bash
if [ $# -eq 0 ]; then
echo "Usage: $0 <arg> [...]"
exit 1
fi
dir=$(dirname "$(readlink -f "$0")")
color=$(tput setaf 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
echo
done