summaryrefslogtreecommitdiffstats
path: root/bin/reproducible_common.sh
diff options
context:
space:
mode:
authorHolger Levsen <holger@layer-acht.org>2015-12-21 11:09:50 +0100
committerHolger Levsen <holger@layer-acht.org>2015-12-21 11:15:48 +0100
commit27ab8b8e5c9d6cec8cb4ea3f7159837753cc207c (patch)
tree97fe7c56a82ab0201f8a7f288bc5861f0c655b67 /bin/reproducible_common.sh
parent0bc5b6953731532fa3b03b60135fed80cdd3fc52 (diff)
downloadjenkins.debian.net-27ab8b8e5c9d6cec8cb4ea3f7159837753cc207c.tar.xz
use 'date -u' always
Diffstat (limited to 'bin/reproducible_common.sh')
-rwxr-xr-xbin/reproducible_common.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/reproducible_common.sh b/bin/reproducible_common.sh
index 34c682b2..cfcd910c 100755
--- a/bin/reproducible_common.sh
+++ b/bin/reproducible_common.sh
@@ -503,7 +503,7 @@ print_out_duration() {
local HOUR=$(echo "$DURATION/3600"|bc)
local MIN=$(echo "($DURATION-$HOUR*3600)/60"|bc)
local SEC=$(echo "$DURATION-$HOUR*3600-$MIN*60"|bc)
- echo "$(date) - total duration: ${HOUR}h ${MIN}m ${SEC}s." | tee -a ${RBUILDLOG}
+ echo "$(date -u) - total duration: ${HOUR}h ${MIN}m ${SEC}s." | tee -a ${RBUILDLOG}
}
irc_message() {