Add start/stop build times.

(Useful for build logs)

git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@18132 57a11ea4-9604-0410-9ed3-97b8803252fd
This commit is contained in:
Derek Atkins 2009-06-14 22:58:06 +00:00
parent 558efe9c57
commit 4f970b0caa

View File

@ -4,6 +4,9 @@
set -e
echo -n "Build Starting at "
date
function qpushd() { pushd "$@" >/dev/null; }
function qpopd() { popd >/dev/null; }
function unix_path() { echo "$*" | sed 's,^\([A-Za-z]\):,/\1,;s,\\,/,g'; }
@ -1377,6 +1380,8 @@ for step in "${steps[@]}" ; do
done
qpopd
echo -n "Build Finished at "
date
### Local Variables: ***
### sh-basic-offset: 4 ***