From 4b07bf84c44b22e4361adc925e914274a20009ee Mon Sep 17 00:00:00 2001 From: borjaperfra Date: Mon, 14 Sep 2026 12:53:08 +0200 Subject: [PATCH] fix: point both installers at v0.1.7 v0.1.6 ended on "Run nan to get started" - true, printed from a shell that could not find `nan` yet, and silent about signing in, which is a subcommand nobody had mentioned. It ends on a numbered list now: restart the terminal when the PATH entry was added, sign in, open the panel. helmcode/nan-cli#8. Co-Authored-By: Claude Opus 5 (1M context) --- src/pages/install.ps1.ts | 7 ++++++- src/pages/install.ts | 2 +- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/src/pages/install.ps1.ts b/src/pages/install.ps1.ts index b1f21d4..51a3ef3 100644 --- a/src/pages/install.ps1.ts +++ b/src/pages/install.ps1.ts @@ -43,12 +43,17 @@ export const prerender = false; * or anything before .NET Framework 4.7.1 - an ordinary x64 box was told it was * an unsupported architecture. It reads the environment as well now. * + * v0.1.7 is the first one that says what to do after it finishes. Until it, + * the script ended on "Run nan to get started" - true, printed from a shell + * that could not find `nan` yet, and silent about signing in, which is a + * subcommand nobody had mentioned. It ends on a numbered list now. + * * If this tag ever stops existing, the upstream fetch 404s and the route * answers with the error script below - the correct degraded behaviour for * something piped into `iex`. */ const SCRIPT_URL = - 'https://raw.githubusercontent.com/helmcode/nan-cli/v0.1.6/scripts/install.ps1'; + 'https://raw.githubusercontent.com/helmcode/nan-cli/v0.1.7/scripts/install.ps1'; export const GET: APIRoute = async () => { let upstream: Response; diff --git a/src/pages/install.ts b/src/pages/install.ts index cd4afef..487554f 100644 --- a/src/pages/install.ts +++ b/src/pages/install.ts @@ -42,7 +42,7 @@ export const prerender = false; * it, which explains neither what happened nor what to do. */ const SCRIPT_URL = - 'https://raw.githubusercontent.com/helmcode/nan-cli/v0.1.6/scripts/install.sh'; + 'https://raw.githubusercontent.com/helmcode/nan-cli/v0.1.7/scripts/install.sh'; export const GET: APIRoute = async () => { let upstream: Response;