Reworked the index.js
Lint / pre-commit Linting (push) Successful in 30s Details

This commit is contained in:
Philipp Horstenkamp 2023-12-25 02:12:52 +01:00
parent 227dde862d
commit c5e6ac37fa
Signed by: Philipp
GPG Key ID: DD53EAC36AFB61B4
1 changed files with 1 additions and 1 deletions

View File

@ -54,7 +54,7 @@ async function readReplaceAndWriteFiles(pattern, prefix) {
let processPromise = fs.promises
.readFile(file, "utf8")
.then((content) => {
content = replacePlaceholders(content, replacements);
content = replacePlaceholders(content);
return fs.promises.writeFile(file, content);
});