From f9de3b49ea4bc9926d525a6b7795897a2d7eb841 Mon Sep 17 00:00:00 2001 From: Lukas Wuttke Date: Fri, 5 Jun 2026 11:34:28 +0200 Subject: [PATCH] docs(quickstart): clarify the inspect-first download is silent `curl -fsSL ... -o install.sh` writes to a file and prints nothing by design. Note inline that no output means success, so users don't think it failed. Co-Authored-By: Claude Opus 4.8 --- environment-setup/quickstart.mdx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/environment-setup/quickstart.mdx b/environment-setup/quickstart.mdx index 07d2087..333e179 100644 --- a/environment-setup/quickstart.mdx +++ b/environment-setup/quickstart.mdx @@ -43,9 +43,9 @@ The installer runs below these too — it only warns, and more RAM mainly helps Every install script is open source. Download, inspect, then run: ```bash - curl -fsSL https://tracebloc.io/i.sh -o install.sh - less install.sh # review it - bash install.sh + curl -fsSL https://tracebloc.io/i.sh -o install.sh # silent download — no output means it worked + less install.sh # review it (q to quit) + bash install.sh # run it ``` Source: [github.com/tracebloc/client](https://github.com/tracebloc/client/blob/main/scripts/install.sh). Release binaries are cosign-signed, so you can verify their signature before trusting them.