From 52d304b056116a541ab7ac1a1ac4c83869ee5b5b Mon Sep 17 00:00:00 2001 From: Kevin Day Date: Sun, 27 Apr 2025 16:03:23 -0500 Subject: [PATCH] Update: Add verbose printing of the install command when in debug for test.sh. --- build/scripts/test.sh | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/build/scripts/test.sh b/build/scripts/test.sh index ef3f2cb..54742ca 100644 --- a/build/scripts/test.sh +++ b/build/scripts/test.sh @@ -601,6 +601,14 @@ test_operate_build_project() { echo fi + if [[ ${verbosity} == "debug" ]] ; then + if [[ ${SHELL_ENGINE} == "zsh" ]] ; then + echo "zsh ./install.sh ${verbose} ${context} -w \"${destination}\"" + else + echo "./install.sh ${verbose} ${context} -w \"${destination}\"" + fi + fi + if [[ ${SHELL_ENGINE} == "zsh" ]] ; then zsh ./install.sh ${verbose} ${context} -w "${destination}" else -- 1.8.3.1