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

Commit

Permalink
fix(gulp): Trailing spaces lint error in gulpfile
Browse files Browse the repository at this point in the history
Removes the trailing spaces in the gulpfile causing a linting error.
  • Loading branch information
mleanos committed Apr 12, 2016
1 parent eaead7a commit b36c37e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ gulp.task('watch:server:run-tests', function () {
// determine if the changed (watched) file is a server test
_.forEach(glob.sync(pattern), function (f) {
var filePath = path.resolve(f);

if (filePath === path.resolve(file.path)) {
changedTestFiles.push(f);
}
Expand Down

0 comments on commit b36c37e

Please sign in to comment.