Skip to content

Commit e6b9c86

Browse files
committed
minor changes
1 parent c852ab9 commit e6b9c86

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

gulpfile.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -440,7 +440,7 @@ function getAddedFilesSync() {
440440
return out
441441
.split(/\r?\n/)
442442
.filter(l => !!l)
443-
.filter(l => _.intersection(['A', '?', 'U'], l.substring(0, 2).trim().split()).length > 0)
443+
.filter(l => _.intersection(['A', '?', 'U'], l.substring(0, 2).trim().split('')).length > 0)
444444
.map(l => path.join(__dirname, l.substring(2).trim()));
445445
}
446446
function getModifiedFilesSync() {

0 commit comments

Comments
 (0)