From 09ff6e80b8b32a4a1ee1bdb70adf8dc537c19bc7 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Thu, 19 Feb 2026 13:42:34 +0800 Subject: [PATCH] automated: move logs to logs/ [skip ci] --- 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 34aa23ad..61a05789 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="logs/$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 4e0a30fe..cb88bfdd 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="logs/nightly-build-$(date -u +%F+%T).log" if [ -L nightly-build.log ]; then mv -f nightly-build.log nightly-build-previous.log fi