diff --git a/resources/utils.js b/resources/utils.js index 85e2f28bfe7..d48a02a3c20 100644 --- a/resources/utils.js +++ b/resources/utils.js @@ -49,13 +49,6 @@ function rmdirRecursive(dirPath) { } function readdirRecursive(dirPath, opts = {}) { - console.log('-------'); - const result = readdirRecursive2(dirPath, opts); - console.log('+++++++'); - return result; -} - -function readdirRecursive2(dirPath, opts = {}) { const { ignoreDir } = opts; const result = []; for (const dirent of fs.readdirSync(dirPath, { withFileTypes: true })) {