From e0eaf6267f40492d5168ea37c77578f37289dd83 Mon Sep 17 00:00:00 2001 From: cod378 Date: Wed, 12 Nov 2025 04:53:37 +0000 Subject: [PATCH] fix: suppress git clone output to reduce installation noise --- install_proxmenux.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install_proxmenux.sh b/install_proxmenux.sh index 03a3736..8c1e27f 100755 --- a/install_proxmenux.sh +++ b/install_proxmenux.sh @@ -479,7 +479,7 @@ install_normal_version() { ((current_step++)) show_progress $current_step $total_steps "Cloning ProxMenux repository..." - if ! git clone --depth 1 "$REPO_URL" "$TEMP_DIR" 2>&1; then + if ! git clone --depth 1 "$REPO_URL" "$TEMP_DIR" 2>/dev/null; then msg_error "Failed to clone repository from $REPO_URL" exit 1 fi