Skip to content
This repository was archived by the owner on Aug 30, 2021. It is now read-only.

Commit f2a6bf9

Browse files
committed
fix(gulp): Trailing spaces lint error in gulpfile (#1303)
Removes the trailing spaces in the gulpfile causing a linting error.
1 parent eaead7a commit f2a6bf9

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
@@ -100,7 +100,7 @@ gulp.task('watch:server:run-tests', function () {
100100
// determine if the changed (watched) file is a server test
101101
_.forEach(glob.sync(pattern), function (f) {
102102
var filePath = path.resolve(f);
103-
103+
104104
if (filePath === path.resolve(file.path)) {
105105
changedTestFiles.push(f);
106106
}

0 commit comments

Comments
 (0)