From 71a5eae2212e7abf87c97a569f8251a56b5474a6 Mon Sep 17 00:00:00 2001 From: Johnny Estilles Date: Sun, 19 Apr 2015 12:36:10 +0800 Subject: [PATCH] chore: fixed lint errors --- tasks/command.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tasks/command.js b/tasks/command.js index 00d68fe..38624f5 100755 --- a/tasks/command.js +++ b/tasks/command.js @@ -1,6 +1,5 @@ #!/usr/bin/env node - 'use strict'; var program = require('commander'); @@ -48,7 +47,7 @@ if (process.argv.join('').indexOf('/grunt') === -1) { console.log(' - With URL %s', program.url); } - if (program.tag != undefined){ + if (program.tag !== undefined){ if(program.tag === false || program.tag === "false"){ options.tag = false; console.log(' - No tag, getting log since the BigBang'); @@ -66,6 +65,7 @@ if (process.argv.join('').indexOf('/grunt') === -1) { console.log(' - The output file is %s', options.file); git_changelog.generate(options).then(function(){ - console.log('Finished generating log Yai!') + console.log('Finished generating log Yai!'); }); -} \ No newline at end of file + +}