fix: missed a spot on the bootstrap.sh => curl-pipe-bootstrap.tpl.sh

This commit is contained in:
AJ ONeal
2023-11-07 23:02:28 -07:00
parent 92b0b2fe42
commit 7285d9efb6
+2 -2
View File
@@ -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 }) {