erplibre/script/make.sh

19 lines
244 B
Bash
Raw Permalink Normal View History

#!/usr/bin/env bash
Red='\033[0;31m' # Red
Color_Off='\033[0m' # Text Reset
echo "
===> ${@}
"
time make $@
retVal=$?
echo "
<=== ${@}
"
if [[ $retVal -ne 0 ]]; then
echo -e "${Red}Error${Color_Off} make ${@}"
exit 1
fi