fix: show golang installation

This commit is contained in:
Whispering Wind
2025-08-25 20:31:02 +03:30
committed by GitHub
parent 757da63c01
commit b4579f1bc6

View File

@ -30,7 +30,7 @@ install_go_and_compile_auth() {
if ! command -v go &>/dev/null; then if ! command -v go &>/dev/null; then
warn "Go is not installed. Attempting to install..." warn "Go is not installed. Attempting to install..."
#apt-get update -qq >/dev/null #apt-get update -qq >/dev/null
apt install -y golang-go >/dev/null apt install golang-go -y
success "Go installed successfully." success "Go installed successfully."
else else
success "Go is already installed." success "Go is already installed."