Files
tut-spring-boot-kotlin/test/run.sh
2018-05-11 14:26:11 +02:00

19 lines
188 B
Bash
Executable File

#!/bin/sh
cd $(dirname $0)
cd ..
./mvnw clean package
ret=$?
if [ $ret -ne 0 ]; then
exit $ret
fi
rm -rf target
./gradlew build
ret=$?
if [ $ret -ne 0 ]; then
exit $ret
fi
rm -rf build