From 0a20821c41057c440f53e422abbfeba5e8a6a4dd Mon Sep 17 00:00:00 2001 From: cod378 Date: Wed, 12 Nov 2025 05:00:06 +0000 Subject: [PATCH] refactor: remove verbose cleanup messages from temporary file removal --- install_proxmenux.sh | 2 -- 1 file changed, 2 deletions(-) diff --git a/install_proxmenux.sh b/install_proxmenux.sh index 8c1e27f..d6b3218 100755 --- a/install_proxmenux.sh +++ b/install_proxmenux.sh @@ -76,9 +76,7 @@ cleanup_corrupted_files() { # Cleanup function cleanup() { if [ -d "$TEMP_DIR" ]; then - echo -e "${YELLOW}Cleaning up temporary files...${NC}" rm -rf "$TEMP_DIR" - echo -e "${GREEN}Cleanup completed.${NC}" fi }