Skip to content

Commit d82798f

Browse files
committed
Fix build file path
1 parent 06a641d commit d82798f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

buildFiles.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ const getAllBuildFiles = function (dirPath, arrayOfFiles) {
4444
if (fsStat.isDirectory()) {
4545
arrayOfFiles = getAllBuildFiles(join(dirPath, "/", file), arrayOfFiles)
4646
} else {
47-
arrayOfFiles.push(join(__dirname, dirPath, "/", file))
47+
arrayOfFiles.push(join(dirPath, "/", file))
4848
}
4949
})
5050

0 commit comments

Comments
 (0)