From 41df5d772aa36c36156c8afd8f55c98267a48030 Mon Sep 17 00:00:00 2001 From: borjaperfra Date: Mon, 14 Sep 2026 13:49:16 +0200 Subject: [PATCH] fix: point both installers at v0.1.11 Signing in from the panel left the API client holding the token it was built with at start-up - none, on a fresh machine - so it signed a member in and then answered every tab `unauthorized`. helmcode/nan-cli#12. 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 5d33d62..364b875 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.10/scripts/install.ps1'; + 'https://raw.githubusercontent.com/helmcode/nan-cli/v0.1.11/scripts/install.ps1'; export const GET: APIRoute = async () => { let upstream: Response; diff --git a/src/pages/install.ts b/src/pages/install.ts index 47a3f03..30a785f 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.10/scripts/install.sh'; + 'https://raw.githubusercontent.com/helmcode/nan-cli/v0.1.11/scripts/install.sh'; export const GET: APIRoute = async () => { let upstream: Response;