From 3e15cb173dfb87442b9a0dd0778732dd2fbba72a Mon Sep 17 00:00:00 2001 From: Alexandre Aubin Date: Sat, 31 Aug 2024 14:25:14 +0200 Subject: [PATCH] Hmm? --- lib/tests.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/tests.sh b/lib/tests.sh index 055c0fa..a054790 100644 --- a/lib/tests.sh +++ b/lib/tests.sh @@ -25,9 +25,10 @@ _STUFF_TO_RUN_BEFORE_INITIAL_SNAPSHOT() pushd $package_path/scripts >/dev/null for SCRIPT in $(ls _common.sh install remove upgrade backup restore change_url config 2>/dev/null) do + echo $SCRIPT # bash -n / noexec option allows to find syntax issues without actually running the scripts # cf https://unix.stackexchange.com/questions/597743/bash-shell-noexec-option-usage-purpose - bash -n $SCRIPT | tee -a /proc/self/fd/3 || syntax_issue=true + bash -n $SCRIPT 2>&1 | tee -a /proc/self/fd/3 || syntax_issue=true done popd >/dev/null [[ $syntax_issue == true ]] && log_report_test_success || log_critical "Obvious syntax issues found which will make the scripts crash ... not running the actual tests until these are fixed"