From 0c7a3a8f4836ae1c8384c7a45eff9a085f2d7e32 Mon Sep 17 00:00:00 2001 From: borjaperfra Date: Mon, 14 Sep 2026 14:36:24 +0200 Subject: [PATCH] fix: point both installers at v0.1.13 Two releases since these last moved. v0.1.12 gave the Setup tab a working state and a list of what to do with each tool once it is configured, and v0.1.13 put the mascot on Home. 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 364b875..c63f12d 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.11/scripts/install.ps1'; + 'https://raw.githubusercontent.com/helmcode/nan-cli/v0.1.13/scripts/install.ps1'; export const GET: APIRoute = async () => { let upstream: Response; diff --git a/src/pages/install.ts b/src/pages/install.ts index 30a785f..97f5a5d 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.11/scripts/install.sh'; + 'https://raw.githubusercontent.com/helmcode/nan-cli/v0.1.13/scripts/install.sh'; export const GET: APIRoute = async () => { let upstream: Response;