automated: use + separator for date+time
Some checks failed
check / Stackage check (push) Has been cancelled

I keep seeing day_hour as hour_min
This commit is contained in:
Jens Petersen 2026-02-18 21:32:03 +08:00
parent 3fb5ae5605
commit 2b818000cf
2 changed files with 2 additions and 2 deletions

View File

@ -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

View File

@ -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