fix: suppress git clone output to reduce installation noise

This commit is contained in:
cod378
2025-11-12 04:53:37 +00:00
parent 3ddf98277f
commit e0eaf6267f

View File

@@ -479,7 +479,7 @@ install_normal_version() {
((current_step++)) ((current_step++))
show_progress $current_step $total_steps "Cloning ProxMenux repository..." 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" msg_error "Failed to clone repository from $REPO_URL"
exit 1 exit 1
fi fi