diff options
-rw-r--r-- | .scripts/transform.js | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/.scripts/transform.js b/.scripts/transform.js index b95c833..139f733 100644 --- a/.scripts/transform.js +++ b/.scripts/transform.js @@ -26,11 +26,9 @@ readdirSync(blogsDir).forEach((blog) => { if (statSync(blogPath).isDirectory()) { readdirSync(blogPath).forEach((blogFile) => { const blogFilePath = join(blogPath, blogFile); - if (statSync(blogFilePath).isFile()) { - if (blogFilePath.toLowerCase().includes("readme")) { - rmSync(blogFilePath); - } - transform(blogFilePath); + if (statSync(blogFilePath).isFile() && blogFilePath !== ".git") { + if (blogFilePath.toLowerCase().includes("readme")) rmSync(blogFilePath); + else transform(blogFilePath); } }); } |