fix: use single quotes for WEBI_VERSION

This commit is contained in:
AJ ONeal
2023-10-30 01:35:38 -06:00
parent e6713da28d
commit 480dc0801c
+1 -1
View File
@@ -108,7 +108,7 @@ Releases.renderBash = async function (
)
.replace(
/^\s*#?WEBI_VERSION=.*/m,
'WEBI_VERSION=' + JSON.stringify(rel.version),
"WEBI_VERSION='" + rel.version + "'",
)
.replace(/^\s*#?WEBI_MAJOR=.*/m, 'WEBI_MAJOR=' + v.major)
.replace(/^\s*#?WEBI_MINOR=.*/m, 'WEBI_MINOR=' + v.minor)