Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion src/pages/install.ps1.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down
2 changes: 1 addition & 1 deletion src/pages/install.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down
Loading