chore(grunt): remove unnecessary white spaces

This commit is contained in:
Takashi Nakagawa
2014-03-04 21:23:05 +09:00
committed by Brian Ford
parent d07101dec0
commit 2036fb1e71

View File

@@ -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.