From 74d71b35a92c7f9f3a061cd6bfdb9cae7c4811b0 Mon Sep 17 00:00:00 2001 From: cediackermann Date: Thu, 16 Apr 2026 10:48:42 +0200 Subject: [PATCH] Fix installation command to preserve interactive mode Change from piping to process substitution: - Old: curl ... | bash (breaks interactive prompts) - New: bash <(curl ...) (preserves stdin for read commands) This fixes the "not a tty" warning and allows the script to properly pause for user input during installation. Co-Authored-By: Claude Sonnet 4.5 --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index ae0ed78..865d929 100644 --- a/README.md +++ b/README.md @@ -7,7 +7,7 @@ **One-line installation** (recommended): ```bash -curl -fsSL https://raw.githubusercontent.com/cediackermann/riotsecure/main/setup.sh | bash +bash <(curl -fsSL https://raw.githubusercontent.com/cediackermann/riotsecure/main/setup.sh) ``` Or clone and run locally: