5 # >>> = Executing command
9 echo $* | tee -a $LOG_ALL | tee -a $LOG_THIS
34 touch /tmp/_aros_build_fail
36 ) 2>&1 | tee -a $LOG_ALL | tee -a $LOG_THIS
37 if [ -f /tmp/_aros_build_fail ]; then
38 printe "Command '$*' returned error. ABORTING BUILD!"
39 rm -f /tmp/_aros_build_fail
47 archname=$(basename $1)
51 execute tar cjvf $1 --exclude=.svn $2
53 echo ">>> md5sum $archname >$archname.md5"
54 md5sum $archname >$archname.md5
61 archname=$(basename $1)
65 execute zip -r9 $1 $2 -x \*/.svn/\*
67 echo ">>> md5sum $archname >$archname.md5"
68 md5sum $archname >$archname.md5
80 if [ ! -f $LOG_THIS ]; then
81 touch $LOG_THIS >/dev/null