Skip to content

Commit 2515440

Browse files
committed
Bugfix - Source/bin ZIP failed when using ./**
1 parent 64af6c6 commit 2515440

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

analyze.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ function areGlobsValid(globsArray) {
3131
}
3232

3333
function buildGlobObject(globsArray) {
34-
return glob.create(globsArray.join('\n'))
34+
return glob.create(globsArray.join('\n'), { matchDirectories: false })
3535
}
3636

3737
function makeRelative(workingDir, path) {

0 commit comments

Comments
 (0)