From 970e6c4af2204b202110ee98be4914364010ea64 Mon Sep 17 00:00:00 2001 From: Simon Larsen Date: Mon, 17 Jul 2023 15:57:05 +0100 Subject: [PATCH] fix lint. --- Scripts/Install/ReplaceValueInConfig.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Scripts/Install/ReplaceValueInConfig.ts b/Scripts/Install/ReplaceValueInConfig.ts index cef21f8260..042d3e1a50 100644 --- a/Scripts/Install/ReplaceValueInConfig.ts +++ b/Scripts/Install/ReplaceValueInConfig.ts @@ -31,7 +31,7 @@ const init: Function = (): void => { for (let line of linesInEnv) { // this is a comment, ignore. - if (!line.startsWith('export '+envValToReplace)) { + if (!line.startsWith('export ' + envValToReplace)) { linesToRender.push(line); } else { found = true;