2 # badness_catcher: runs the command line passed in and catches error conditions.
5 ERR=$? # get exit status.
6 if [ $ERR -eq 0 ]; then exit; fi # exit if no error.
7 # print a complaint if there was an error.
9 echo "Error in project \"$PROJECT\"!"
10 echo " command=\"$*\"."
12 source $CLAM_DIR/exit_make.sh