From 274add31295f9e7257712172435978d25eeb7833 Mon Sep 17 00:00:00 2001 From: Kevin Day Date: Thu, 7 Nov 2024 23:15:39 -0600 Subject: [PATCH] Cleanup: Print new line to test.sh script on install. I noticed that the "All operations complete." runs into the "Installing individual project '..." line. The `test.sh` now prints a new line before the "Installing..." message. --- build/scripts/test.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/build/scripts/test.sh b/build/scripts/test.sh index 7c98707..80e2d72 100644 --- a/build/scripts/test.sh +++ b/build/scripts/test.sh @@ -597,6 +597,7 @@ test_operate_build_project() { fi if [[ ${verbosity} != "quiet" && ${verbosity} != "error" ]] ; then + echo echo -e "Installing ${mode} project '${c_notice}${project}${c_reset}'." echo fi -- 1.8.3.1