From fe79d94738194d72b003d391e0cd10651fa4c592 Mon Sep 17 00:00:00 2001 From: Asad Iqbal Date: Fri, 15 May 2026 13:18:49 +0500 Subject: [PATCH] fix(profile): point install snippets to canonical i.sh / i.ps1 URLs The Mac/Linux and Windows install snippets pointed to install.sh and install.ps1, both of which return 404. The canonical install URLs served by the website are i.sh and i.ps1 (as documented in the docs setup guide). Closes #40 --- profile/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/profile/README.md b/profile/README.md index 213e53c..d02234c 100644 --- a/profile/README.md +++ b/profile/README.md @@ -7,13 +7,13 @@ **Mac / Linux** ```bash -bash <(curl -fsSL https://tracebloc.io/install.sh) +bash <(curl -fsSL https://tracebloc.io/i.sh) ``` **Windows** ```powershell -irm https://tracebloc.io/install.ps1 | iex +irm https://tracebloc.io/i.ps1 | iex ```