From 711bd07f7b89161d01728f207e1b9cd59eca302a Mon Sep 17 00:00:00 2001 From: Chris Sherwood Date: Sun, 8 Feb 2026 08:34:30 -0800 Subject: [PATCH] fix(docs): use download-then-run install command instead of pipe The install script has interactive prompts (install confirmation and license acceptance) that require stdin. Piping via `curl | bash` consumes stdin, causing `read -p` to receive no input and exit with "Invalid Response." Co-Authored-By: Claude Opus 4.6 --- README.md | 13 ++----------- 1 file changed, 2 insertions(+), 11 deletions(-) diff --git a/README.md b/README.md index 98a4b8f..9797b9f 100644 --- a/README.md +++ b/README.md @@ -23,18 +23,9 @@ Project N.O.M.A.D. can be installed on any Debian-based operating system (we rec *Note: sudo/root privileges are required to run the install script* -#### One-liner (recommended for fresh Ubuntu installs) +#### Quick Install ```bash -sudo apt-get update && sudo apt-get install -y curl && curl -fsSL https://raw.githubusercontent.com/Crosstalk-Solutions/project-nomad/refs/heads/master/install/install_nomad.sh | sudo bash -``` - -#### Two-step install (if you already have curl) -```bash -curl -fsSL https://raw.githubusercontent.com/Crosstalk-Solutions/project-nomad/refs/heads/master/install/install_nomad.sh -o install_nomad.sh -``` - -```bash -sudo bash install_nomad.sh +sudo apt-get update && sudo apt-get install -y curl && curl -fsSL https://raw.githubusercontent.com/Crosstalk-Solutions/project-nomad/refs/heads/master/install/install_nomad.sh -o install_nomad.sh && sudo bash install_nomad.sh ``` Project N.O.M.A.D. is now installed on your device! Open a browser and navigate to `http://localhost:8080` (or `http://DEVICE_IP:8080`) to start exploring!