diff options
Diffstat (limited to 'lib')
| -rw-r--r-- | lib/grunt/utils.js | 6 | 
1 files changed, 3 insertions, 3 deletions
| diff --git a/lib/grunt/utils.js b/lib/grunt/utils.js index b9affd82..a736033d 100644 --- a/lib/grunt/utils.js +++ b/lib/grunt/utils.js @@ -26,7 +26,7 @@ var getRandomPorts = function() {  var getPackage = function() {    if ( !pkg ) { -    // Search up the folder hierarchy for the first package.json     +    // Search up the folder hierarchy for the first package.json      var packageFolder = path.resolve('.');      while ( !fs.existsSync(path.join(packageFolder, 'package.json')) ) {        var parent = path.dirname(packageFolder); @@ -34,7 +34,7 @@ var getPackage = function() {        packageFolder = parent;      }      pkg = JSON.parse(fs.readFileSync(path.join(packageFolder,'package.json'), 'UTF-8')); -   +    }    return pkg; @@ -225,7 +225,7 @@ module.exports = {    }, -  updateWebdriver: function(done){     +  updateWebdriver: function(done){      if (process.env.TRAVIS) {        // Skip the webdriver-manager update on Travis, since the browsers will        // be provided remotely. | 
