diff --git a/launcher.sh b/launcher.sh index 685c31a..326767e 100755 --- a/launcher.sh +++ b/launcher.sh @@ -692,13 +692,8 @@ startup_detection() { print_success "Detection complete! Cached for 1 hour." echo "" - # Try to read from tty if available, otherwise from stdin - if [ -t 0 ]; then - read -p "Press Enter to continue..." - else - # stdin available (e.g., from pipe), use it - read -p "Press Enter to continue..." || true - fi + # Read from terminal (use /dev/tty directly) + read -p "Press Enter to continue..." 2>/dev/null /dev/null