From b80adf89ef071ebafc5394abef4a0e37a0bee293 Mon Sep 17 00:00:00 2001 From: Yaro Kasear Date: Fri, 2 May 2025 14:33:48 -0500 Subject: [PATCH] Remove duplicate echo statement for displaying passed arguments in runtest.sh --- runtest.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/runtest.sh b/runtest.sh index a9e9238..4bb4374 100755 --- a/runtest.sh +++ b/runtest.sh @@ -36,6 +36,8 @@ done IFS=$'\n\t' +echo "Here are the arguments passed to the script: $@" + # === Start logging with 'script' safely === if [ -z "${SCRIPT_LOG_STARTED:-}" ]; then export SCRIPT_LOG_STARTED=1 @@ -45,7 +47,6 @@ if [ -z "${SCRIPT_LOG_STARTED:-}" ]; then exec script -q "$LOG_FILE" --return --flush --command "$0" "$@" fi -echo "Here are the arguments passed to the script: $@" # === Now start your real script === source settings.env