From c8d7e2f6b51add946106b072faa677fc862a8c93 Mon Sep 17 00:00:00 2001 From: kaibae19 <99116238+kaibae19@users.noreply.github.com> Date: Sun, 3 Apr 2022 21:23:32 -0700 Subject: [PATCH] Update functions.sh --- setup/functions.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/setup/functions.sh b/setup/functions.sh index 718a2283..f0b5f0dd 100644 --- a/setup/functions.sh +++ b/setup/functions.sh @@ -44,7 +44,9 @@ function apt_get_quiet { # Although we could pass -qq to apt-get to make output quieter, many packages write to stdout # and stderr things that aren't really important. Use our hide_output function to capture # all of that and only show it if there is a problem (i.e. if apt_get returns a failure exit status). - DEBIAN_FRONTEND=noninteractive hide_output apt-get -y -o Dpkg::Options::="--force-confdef" -o Dpkg::Options::="--force-confnew" "$@" +# DEBIAN_FRONTEND=noninteractive hide_output apt-get -y -o Dpkg::Options::="--force-confdef" -o Dpkg::Options::="--force-confnew" "$@" + DEBIAN_FRONTEND=noninteractive apt-get -y -o Dpkg::Options::="--force-confdef" -o Dpkg::Options::="--force-confnew" "$@" #show output for debugging + } function apt_install {