From 22570de48e4068115f55feca1ddf52b4eba5cc54 Mon Sep 17 00:00:00 2001 From: Kevin Day Date: Sun, 27 Apr 2025 16:03:52 -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 c913c0a..a2d1e70 100644 --- a/build/scripts/test.sh +++ b/build/scripts/test.sh @@ -602,6 +602,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