From f21f0bbe283880664a943fb60983193306f3d6f3 Mon Sep 17 00:00:00 2001 From: Steve McIntyre <93sam@debian.org> Date: Wed, 23 Feb 2011 14:25:39 +0000 Subject: [PATCH] Add date/time logging for start and end --- build.sh | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/build.sh b/build.sh index 2604ecfe..fabaf473 100755 --- a/build.sh +++ b/build.sh @@ -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."