From 150f8fc4489c09f15c93a2eeefd77ff864ed3efd Mon Sep 17 00:00:00 2001 From: Yaro Kasear Date: Mon, 28 Apr 2025 14:57:11 -0500 Subject: [PATCH] Add default email body for test completion notification in runtest.sh --- runtest.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/runtest.sh b/runtest.sh index 96e0b0e..ded8159 100755 --- a/runtest.sh +++ b/runtest.sh @@ -26,6 +26,8 @@ SSID_METRICS_FILE="${ENRICHED_FILE%.csv}-ssid-metrics.csv" FAILURE_LOG="${TEST_FILE%.csv}-failures.log" SCRIPT_START=$(date +%s) +EMAIL_BODY=${EMAIL_BODY:-"Test $BOOT_ID completed successfully. Please find the attached files and collect the probe."} + log() { echo "[+] $*" >&2 }