From 038aed5c57905adac07b158148e1d6b4d5de6827 Mon Sep 17 00:00:00 2001 From: belongtothenight <106849935+belongtothenight@users.noreply.github.com> Date: Thu, 13 Jun 2024 22:24:21 +0800 Subject: [PATCH] Add back missing flag --- hw4_libtrace_setup/common_functions.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hw4_libtrace_setup/common_functions.sh b/hw4_libtrace_setup/common_functions.sh index 46e3cfb..377862a 100644 --- a/hw4_libtrace_setup/common_functions.sh +++ b/hw4_libtrace_setup/common_functions.sh @@ -118,7 +118,7 @@ fi # $1: package name aptins () { echo_notice "common" "setup" "Installing ${BOLD}${GREEN}$1${END}..." - err_retry_exec "sudo apt $apt_gflag -o DPkg::Lock::Timeout=300 install $1 -y" 1 5 "common" "functions_aptins" 1 + err_retry_exec "sudo apt -q -o DPkg::Lock::Timeout=300 install $1 -y" 1 5 "common" "functions_aptins" 1 } if [ $verbose == 1 ]; then echo_notice "common" "function" "Loaded function: aptins"