Added script to run all examples.
This commit is contained in:
parent
7db6cbc839
commit
05531406a9
3 changed files with 17 additions and 7 deletions
17
examples/examples.sh
Normal file
17
examples/examples.sh
Normal 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"; do
|
||||
cd "$dir/$ex" || exit 1
|
||||
echo "> Project: ${color}${ex}${normal}"
|
||||
gradle clean "$@" --console=plain --no-build-cache || exit 1
|
||||
echo
|
||||
done
|
Loading…
Add table
Add a link
Reference in a new issue