From 4924fa469ca11b2d71c0cda593b8b4fd699c9754 Mon Sep 17 00:00:00 2001 From: SamNet-dev Date: Wed, 11 Feb 2026 01:44:13 -0600 Subject: [PATCH] fix: post-install menu opens help instead of interactive menu --- conduit.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/conduit.sh b/conduit.sh index 49faa39..d097af4 100644 --- a/conduit.sh +++ b/conduit.sh @@ -11668,7 +11668,7 @@ SVCEOF if [ "$BATCH_MODE" != "true" ]; then read -p "Open management menu now? [Y/n] " open_menu < /dev/tty || true if [[ ! "$open_menu" =~ ^[Nn]$ ]]; then - "$INSTALL_DIR/conduit" menu + "$INSTALL_DIR/conduit" menu < /dev/tty fi fi }