Skip to content

Commit

Permalink
don't clear the terminal with -q
Browse files Browse the repository at this point in the history
  • Loading branch information
bitcoin-tools authored Oct 11, 2024
1 parent d04538d commit 922dab2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion nodebuilder
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 922dab2

Please sign in to comment.