From cc4f4f0adbccccdf7fecb49f55db9a78446314a5 Mon Sep 17 00:00:00 2001 From: Yaro Kasear Date: Wed, 16 Apr 2025 16:00:44 -0500 Subject: [PATCH] Define FAILURE_LOG variable for consistent failure log file naming --- runtest.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/runtest.sh b/runtest.sh index b111ede..6170db8 100755 --- a/runtest.sh +++ b/runtest.sh @@ -6,6 +6,8 @@ IFS=$'\n\t' source settings.env +FAILURE_LOG="${TEST_FILE%.csv}-failures.log" + # Check if email recipient is set if [ -z "$RECIPIENT" ]; then echo "[!] Please set the RECIPIENT variable in settings.env."