From 2b818000cfa592cc87e677f506f3cb111bc66a9d Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Wed, 18 Feb 2026 21:32:03 +0800 Subject: [PATCH] automated: use + separator for date+time I keep seeing day_hour as hour_min --- automated/run-lts.sh | 2 +- automated/run-nightly.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/automated/run-lts.sh b/automated/run-lts.sh index 569f6ea7..34aa23ad 100755 --- a/automated/run-lts.sh +++ b/automated/run-lts.sh @@ -3,7 +3,7 @@ cd "$(dirname "${BASH_SOURCE[0]}")" git pull -LOG_FILE="$1-build-$(date -u +%F_%T).log" +LOG_FILE="$1-build-$(date -u +%F+%T).log" ln -sf $LOG_FILE lts-build.log time script -q -c "./build.sh $*" $LOG_FILE touch -h lts-build.log diff --git a/automated/run-nightly.sh b/automated/run-nightly.sh index 7f473a23..4e0a30fe 100755 --- a/automated/run-nightly.sh +++ b/automated/run-nightly.sh @@ -9,7 +9,7 @@ esac while true; do git pull - LOG_FILE="nightly-build-$(date -u +%F_%T).log" + LOG_FILE="nightly-build-$(date -u +%F+%T).log" if [ -L nightly-build.log ]; then mv -f nightly-build.log nightly-build-previous.log fi