erplibre/script/make.sh
Mathieu Benoit 24e5cba22b [UPD] makefile: improve test
- prevent makefile cache to ignore test
- update image_db_create_erplibre_base
- add mariadb migrator test
- add helloworld test
- fix other test
- add isort format
- add show log of test
- add clean to remove temporary file
2022-01-24 14:09:17 -05:00

15 lines
153 B
Bash
Executable file

#!/usr/bin/env bash
echo "
===> ${@}
"
time make $@
retVal=$?
echo "
<=== ${@}
"
if [[ $retVal -ne 0 ]]; then
echo "Error make ${@}"
exit 1
fi