diff --git a/tools/bundle-doc/index.mjs b/tools/bundle-doc/index.mjs index 826f29420..80772e2dc 100644 --- a/tools/bundle-doc/index.mjs +++ b/tools/bundle-doc/index.mjs @@ -14,6 +14,9 @@ const markdownRoot = resolve(__dirname, "../../markdown"); const docImagesRoot = resolve(__dirname, "../../src/Documentation/images"); function addFileToListOfDocPages(files, root, filePath) { + if (filePath.endsWith(".DS_Store")) { + return; + } // Windows path uses "\", so we need to replace it with "/". files.push(relative(root, filePath).replace(/\\/g, "/")); }