From 7285d9efb666bf712a0be4a368373a8561390ec0 Mon Sep 17 00:00:00 2001 From: AJ ONeal Date: Tue, 7 Nov 2023 22:45:07 +0000 Subject: [PATCH] fix: missed a spot on the bootstrap.sh => curl-pipe-bootstrap.tpl.sh --- _webi/serve-installer.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/_webi/serve-installer.js b/_webi/serve-installer.js index 87de554..397c60d 100644 --- a/_webi/serve-installer.js +++ b/_webi/serve-installer.js @@ -128,8 +128,8 @@ Installers.helper = async function ({ ua, pkg, tag, formats, libc }) { return [rel, opts]; }; -var CURL_PIPE_PS1_BOOT = path.join(__dirname, 'bootstrap.ps1'); -var CURL_PIPE_SH_BOOT = path.join(__dirname, 'bootstrap.sh'); +var CURL_PIPE_PS1_BOOT = path.join(__dirname, 'curl-pipe-bootstrap.tpl.ps1'); +var CURL_PIPE_SH_BOOT = path.join(__dirname, 'curl-pipe-bootstrap.tpl.sh'); var BAD_SH_RE = /[<>'"`$\\]/; Installers.getPosixCurlPipeBootstrap = async function ({ baseurl, pkg, ver }) {