mirror of
https://github.com/sigmasternchen/NurseBot
synced 2025-03-15 08:08:58 +00:00
now with exit code
This commit is contained in:
parent
15c512af3a
commit
35e0af7f98
1 changed files with 4 additions and 0 deletions
|
@ -3,6 +3,7 @@
|
|||
EXIT_SUCCESS=0
|
||||
EXIT_COMPILE_FAILED=1
|
||||
EXIT_PACKING_FAILED=2
|
||||
EXIT_INSTRUMENTATION_FAILED=3
|
||||
|
||||
mkdir -p ../bin/
|
||||
mkdir -p ../build/
|
||||
|
@ -27,6 +28,9 @@ fi
|
|||
popd
|
||||
|
||||
./instrumentation.sh
|
||||
if test ! $? = 0; then
|
||||
exit $EXIT_INSTRUMENTATION_FAILED
|
||||
fi
|
||||
|
||||
cp ../bin/activejdbc_models.properties ../build/
|
||||
|
||||
|
|
Loading…
Reference in a new issue