Fix connect_replace ending up in non-dev now

This commit is contained in:
Bruno Bernardino 2022-07-01 12:28:18 +01:00
parent 1515237a4c
commit dd41fd749b
No known key found for this signature in database
GPG Key ID: D1B0A69ADD114ECE
1 changed files with 3 additions and 0 deletions

View File

@ -220,6 +220,9 @@ module.exports = {
);
}
// Nothing more to connect to, in non-dev
htmlFileContents = htmlFileContents.replace("[REPLACE_CONNECT]", "");
writeFileSync(htmlFilePath, htmlFileContents, "utf-8");
return true;