Skip to content

Commit

Permalink
chore: fixed lint errors
Browse files Browse the repository at this point in the history
  • Loading branch information
Johnny Estilles committed Apr 19, 2015
1 parent ef6cf2c commit 71a5eae
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions tasks/command.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
#!/usr/bin/env node


'use strict';

var program = require('commander');
Expand Down Expand Up @@ -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');
Expand All @@ -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!');
});
}

}

0 comments on commit 71a5eae

Please sign in to comment.