From 922dab29669cfe601556ca61be9c25a6aad33181 Mon Sep 17 00:00:00 2001 From: Bitcoin Tools <156422466+bitcoin-tools@users.noreply.github.com> Date: Fri, 11 Oct 2024 09:34:31 -0400 Subject: [PATCH] don't clear the terminal with -q --- nodebuilder | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nodebuilder b/nodebuilder index 7552df794..1b269e958 100755 --- a/nodebuilder +++ b/nodebuilder @@ -38,7 +38,7 @@ check_internet_to_address() clear_the_terminal() { - if is_running_in_ci || is_running_in_container; then + if [ "${quiet_output}" = 'true' ] || is_running_in_ci || is_running_in_container; then return elif [ ! -t 1 ]; then # stdout is not a terminal perhaps redirected or piped