From 851ff6e52f84b3b8cd1e346963120be98fd9a26b Mon Sep 17 00:00:00 2001 From: borjaperfra Date: Mon, 14 Sep 2026 13:08:45 +0200 Subject: [PATCH] fix: point both installers at v0.1.8 Nothing changed in either script since v0.1.7 - the fix is in the binary, where `nan auth login` now names the `--email` flag when the prompt cannot be answered. The pins move together and there is nothing to gain from them drifting behind the release the installers fetch. Co-Authored-By: Claude Opus 5 (1M context) --- src/pages/install.ps1.ts | 2 +- src/pages/install.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/pages/install.ps1.ts b/src/pages/install.ps1.ts index 51a3ef3..0a4b60c 100644 --- a/src/pages/install.ps1.ts +++ b/src/pages/install.ps1.ts @@ -53,7 +53,7 @@ export const prerender = false; * something piped into `iex`. */ const SCRIPT_URL = - 'https://raw.githubusercontent.com/helmcode/nan-cli/v0.1.7/scripts/install.ps1'; + 'https://raw.githubusercontent.com/helmcode/nan-cli/v0.1.8/scripts/install.ps1'; export const GET: APIRoute = async () => { let upstream: Response; diff --git a/src/pages/install.ts b/src/pages/install.ts index 487554f..dc4f628 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.7/scripts/install.sh'; + 'https://raw.githubusercontent.com/helmcode/nan-cli/v0.1.8/scripts/install.sh'; export const GET: APIRoute = async () => { let upstream: Response;