We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 06a641d commit d82798fCopy full SHA for d82798f
buildFiles.js
@@ -44,7 +44,7 @@ const getAllBuildFiles = function (dirPath, arrayOfFiles) {
44
if (fsStat.isDirectory()) {
45
arrayOfFiles = getAllBuildFiles(join(dirPath, "/", file), arrayOfFiles)
46
} else {
47
- arrayOfFiles.push(join(__dirname, dirPath, "/", file))
+ arrayOfFiles.push(join(dirPath, "/", file))
48
}
49
})
50
0 commit comments