fix script

This commit is contained in:
Simon Larsen
2023-07-17 14:30:58 +01:00
parent cc24dad2cd
commit 31e0376e62
2 changed files with 5 additions and 5 deletions

View File

@@ -31,7 +31,7 @@ const init: Function = (): void => {
for (let line of linesInEnv) {
// this is a comment, ignore.
if (!line.startsWith(envValToReplace)) {
if (!line.startsWith('export '+envValToReplace)) {
linesToRender.push(line);
} else {
found = true;