From fda389b8a08dfd464be094da1048cc9c29be8fb5 Mon Sep 17 00:00:00 2001 From: borjaperfra Date: Mon, 14 Sep 2026 17:25:36 +0200 Subject: [PATCH] fix: point both installers at v0.1.18 A tool that would not configure held the setup on its last step and reported the whole thing as failed, throwing away the configs that had been written. helmcode/nan-cli#21. 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 c13c11e..465fc25 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.17/scripts/install.ps1'; + 'https://raw.githubusercontent.com/helmcode/nan-cli/v0.1.18/scripts/install.ps1'; export const GET: APIRoute = async () => { let upstream: Response; diff --git a/src/pages/install.ts b/src/pages/install.ts index f0bedf4..b7ec92a 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.17/scripts/install.sh'; + 'https://raw.githubusercontent.com/helmcode/nan-cli/v0.1.18/scripts/install.sh'; export const GET: APIRoute = async () => { let upstream: Response;