Add date/time logging for start and end

This commit is contained in:
Steve McIntyre 2011-02-23 14:25:39 +00:00
parent 877fa688cc
commit f21f0bbe28
1 changed files with 5 additions and 1 deletions

View File

@ -7,7 +7,8 @@ if [ -z "$CF" ] ; then
fi
. $CF
echo "Using CONF from $CF"
START=`date -u`
echo "$START: Using CONF from $CF."
if [ -z "$COMPLETE" ] ; then
export COMPLETE=1
@ -84,3 +85,6 @@ make $IMAGETARGET
if [ "$IMAGESUMS"x = 1x ]; then
make imagesums
fi
END=`date -u`
echo "$END: Finished."