Index: user/uqs/git_conv/git_conv_cron =================================================================== --- user/uqs/git_conv/git_conv_cron (revision 244082) +++ user/uqs/git_conv/git_conv_cron (revision 244083) @@ -1,17 +1,17 @@ #!/bin/sh today="`date +%Y-%m-%d`" log="$today.log" cd /home/git # TODO cleanup old logs -git_conv >> $log 2>&1 +./git_conv >> $log 2>&1 if [ $? != 0 ]; then echo "Error during git_conv" >&2 - tail $log + tail -30 $log exit 1 fi