From 9173e59e1ed238b0d9c1126f0303ffc298817fb9 Mon Sep 17 00:00:00 2001 From: webfarben Date: Mon, 23 Feb 2026 18:48:12 +0100 Subject: [PATCH] fix: Add -e flag to echo commands in install.sh for proper color code interpretation - Lines 211-212 now use echo -e to interpret ANSI color codes - Colors will now display correctly in terminal output during installation --- install.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/install.sh b/install.sh index 414a5c9..d933bc5 100755 --- a/install.sh +++ b/install.sh @@ -208,8 +208,8 @@ print_success "Die Anwendung wurde installiert!" echo "" echo "Sie können die Anwendung nun starten:" echo "" -echo " 1. ${BLUE}Über das Anwendungsmenü${NC} (suchen Sie nach 'PDF zu ICS')" -echo " 2. ${BLUE}Über die Kommandozeile:${NC} pdf-to-ics" +echo -e " 1. ${BLUE}Über das Anwendungsmenü${NC} (suchen Sie nach 'PDF zu ICS')" +echo -e " 2. ${BLUE}Über die Kommandozeile:${NC} pdf-to-ics" echo "" echo "Installation Details:" echo " • Installationsverzeichnis: $INSTALL_DIR"