From 074b79ea48a45fe1766e5d4fb0de5a3563cb4e03 Mon Sep 17 00:00:00 2001 From: OniriCorpe Date: Tue, 20 Feb 2024 03:30:25 +0100 Subject: [PATCH] =?UTF-8?q?Force=20current=20hour=20in=20UTC=20and=20show?= =?UTF-8?q?=20explicitly=20that=20we=E2=80=99re=20using=20UTC?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- lib/common.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/common.sh b/lib/common.sh index 5e926e1..0d00e89 100644 --- a/lib/common.sh +++ b/lib/common.sh @@ -170,7 +170,7 @@ stop_timer () { [ $minutes -eq 1 ] && pminutes="${pminutes}, " || test -z "$pminutes" || pminutes="${pminutes}s, " [ $seconds -gt 1 ] && pseconds="${pseconds}s" || pseconds="0s" - local time="${phours}${pminutes}${pseconds} ($(date '+%T'))" + local time="${phours}${pminutes}${pseconds} ($(date '+%T %Z' -u))" if [ "$msg_type" = "one_test" ]; then log_info "Working time for this test: $time" elif [ "$msg_type" = "all_tests" ]; then