ref(webi): use more descriptive filenames

This commit is contained in:
AJ ONeal
2023-11-05 23:58:47 -07:00
parent c6b37324a0
commit 2a2600b11c
5 changed files with 2 additions and 2 deletions

View File

@@ -56,7 +56,7 @@ Releases.renderBash = async function (
};
var pkgFile = rel.filename || rel.name;
let tplTxt = await fs.promises.readFile(
path.join(__dirname, 'template.sh'),
path.join(__dirname, 'install-package.tpl.sh'),
'utf8',
);
// ex: 'node@lts' or 'node'
@@ -174,7 +174,7 @@ Releases.renderPowerShell = async function (
};
*/
let tplTxt = await fs.promises.readFile(
path.join(__dirname, 'template.ps1'),
path.join(__dirname, 'install-package.tpl.ps1'),
'utf8',
);
var pkgver = pkg + '@' + ver;