From b4579f1bc61d622b85a368af08b551469235465e Mon Sep 17 00:00:00 2001 From: Whispering Wind <151555003+ReturnFI@users.noreply.github.com> Date: Mon, 25 Aug 2025 20:31:02 +0330 Subject: [PATCH] fix: show golang installation --- upgrade.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/upgrade.sh b/upgrade.sh index b6830f8..68572a0 100644 --- a/upgrade.sh +++ b/upgrade.sh @@ -30,7 +30,7 @@ install_go_and_compile_auth() { if ! command -v go &>/dev/null; then warn "Go is not installed. Attempting to install..." #apt-get update -qq >/dev/null - apt install -y golang-go >/dev/null + apt install golang-go -y success "Go installed successfully." else success "Go is already installed."