Skip to content

Commit

Permalink
grunt/change-version.js:replaceRecursively(): Use accidentally-unused…
Browse files Browse the repository at this point in the history
… argument

How did the linters miss this?

[skip sauce]
[skip validator]
  • Loading branch information
cvrebert committed Dec 14, 2015
1 parent a2c945d commit 5cb503e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion grunt/change-version.js
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ function replaceRecursively(directory, excludedDirectories, allowedExtensions, o
console.log('EXCLUDED:' + filepath);
}
});
walkAsync('.', excludedDirectories, updateFile, function (err) {
walkAsync(directory, excludedDirectories, updateFile, function (err) {
console.error('ERROR while traversing directory!:')
console.error(err);
process.exit(1);
Expand Down

0 comments on commit 5cb503e

Please sign in to comment.