Skip to content

Commit 37c4838

Browse files
author
Anthony Dresser
committed
fix missing semicolon
1 parent 1fccc8d commit 37c4838

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

build/gulpfile.hygiene.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -329,7 +329,7 @@ function hygiene(some) {
329329
if (Array.isArray(some) || typeof some === 'string' || !some) {
330330
const options = { base: '.', follow: true, allowEmpty: true };
331331
if (some) {
332-
input = vfs.src(some, options).pipe(filter(all)) // split this up to not unnecessarily filter all a second time
332+
input = vfs.src(some, options).pipe(filter(all)); // split this up to not unnecessarily filter all a second time
333333
} else {
334334
input = vfs.src(all, options);
335335
}

0 commit comments

Comments
 (0)