From 0108e083ff81bba0d49610759aab663825f9c816 Mon Sep 17 00:00:00 2001 From: Felipe Oliveira Date: Thu, 9 May 2013 10:26:43 -0300 Subject: [PATCH] Removing trailing spaces. --- tasks/cucumber-js-task.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tasks/cucumber-js-task.js b/tasks/cucumber-js-task.js index 03c9f43..aecf6ff 100644 --- a/tasks/cucumber-js-task.js +++ b/tasks/cucumber-js-task.js @@ -12,7 +12,7 @@ module.exports = function (grunt) { var tags = options.tags; var format = options.format; var executable = options.executable; - + grunt.verbose.writeflags(options, 'Options'); var callback = function(succeeded) { @@ -42,7 +42,7 @@ module.exports = function (grunt) { var execOptions = ['node', 'node_modules/.bin/cucumber-js']; - + var _ = grunt.util._; if (! _.isEmpty(files)) { execOptions = execOptions.concat(files); @@ -62,7 +62,7 @@ module.exports = function (grunt) { execOptions.push('-f'); execOptions.push(format); } - + var cucumberPath = 'cucumber'; if (! _.isEmpty(executable)) { cucumberPath = executable;