From 32b95b2727f55ba37d85643f44980cad5de51987 Mon Sep 17 00:00:00 2001 From: "Petr \"Stone\" Hracek" Date: Mon, 9 Feb 2026 14:40:53 +0100 Subject: [PATCH] Use relative path instead of full_path Signed-off-by: Petr "Stone" Hracek --- daily_tests/show_logs.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/daily_tests/show_logs.sh b/daily_tests/show_logs.sh index be8ddc8..600f2eb 100755 --- a/daily_tests/show_logs.sh +++ b/daily_tests/show_logs.sh @@ -2,10 +2,12 @@ set -x +cd /root/ci-scripts/daily_tests + while true; do echo "Displaying log files every 10 minutes..." date - python3 /root/ci-scripts/show_logs.py + python3 ./show_logs.py # Let's sleep for 10 minutes sleep 600 done