From bb107b424b36ae756b4ff035174dccf9512027c8 Mon Sep 17 00:00:00 2001 From: Claude Date: Sun, 28 Jun 2026 12:09:42 +0000 Subject: [PATCH] bootstrap.sh: redirect stdin from /dev/tty when launching setup.sh curl | bash consumes stdin from the pipe, so when bootstrap hands off to setup.sh the script gets EOF immediately and exits with 'Cancelled'. Redirecting Claude-Session: https://claude.ai/code/session_01LQJBvqzXeyuhhAcAA3Q5Wq --- bootstrap.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bootstrap.sh b/bootstrap.sh index 8ffcf08..290a329 100755 --- a/bootstrap.sh +++ b/bootstrap.sh @@ -60,7 +60,7 @@ if [ -f "${SCRIPT_DIR}/setup.sh" ]; then && chown -R "${SUDO_USER:-$(id -un)}:" "$DEST" 2>/dev/null || true echo "" fi - exec bash "${SCRIPT_DIR}/setup.sh" + exec bash "${SCRIPT_DIR}/setup.sh"