diff options
| author | Chris Rebert <[email protected]> | 2015-12-14 01:28:22 -0800 |
|---|---|---|
| committer | Chris Rebert <[email protected]> | 2015-12-14 01:28:22 -0800 |
| commit | 5cb503e6306116bce6de78c8b7436a13db851fab (patch) | |
| tree | bd39d2039fa97a662d5a428752b37ebe02ccbc57 | |
| parent | a2c945df89462dcda9141c859f65b297522cc5c2 (diff) | |
| download | bootstrap-5cb503e6306116bce6de78c8b7436a13db851fab.tar.xz bootstrap-5cb503e6306116bce6de78c8b7436a13db851fab.zip | |
grunt/change-version.js:replaceRecursively(): Use accidentally-unused argument
How did the linters miss this?
[skip sauce]
[skip validator]
| -rwxr-xr-x | grunt/change-version.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/grunt/change-version.js b/grunt/change-version.js index 02807e176..8808d2653 100755 --- a/grunt/change-version.js +++ b/grunt/change-version.js @@ -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); |
