From a0f0ffe0173f147a4a87f44ca49e1b02d4f449c6 Mon Sep 17 00:00:00 2001 From: Whispering Wind <151555003+ReturnFI@users.noreply.github.com> Date: Mon, 25 Aug 2025 00:51:46 +0330 Subject: [PATCH] fix: silence apt-get update with -qq flag --- upgrade.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/upgrade.sh b/upgrade.sh index a40659b..3c4c0a0 100644 --- a/upgrade.sh +++ b/upgrade.sh @@ -29,7 +29,7 @@ install_go_and_compile_auth() { info "Checking for Go and compiling authentication binary..." if ! command -v go &>/dev/null; then warn "Go is not installed. Attempting to install..." - apt-get update -y >/dev/null + apt-get update -qq >/dev/null apt-get install -y golang-go >/dev/null success "Go installed successfully." else @@ -187,4 +187,4 @@ fi # ========== Launch Menu ========== sleep 10 chmod +x menu.sh -./menu.sh \ No newline at end of file +./menu.sh