Skip to content

Commit

Permalink
chore(lint): add missing semicolon
Browse files Browse the repository at this point in the history
  • Loading branch information
Johnny Estilles committed May 12, 2015
1 parent e5dab82 commit 2888af4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tasks/lib/read-gitlog.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ function cmdDone(deferred, code, stdout, stderr) {

function gitLogCommand(git_log_command, from) {
if (git_log_command === this.cmd.gitLog) {
return format(git_log_command, this.options.grep_commits, '%H%n%s%n%b%n==END==', from)
return format(git_log_command, this.options.grep_commits, '%H%n%s%n%b%n==END==', from);
} else {
return format(git_log_command, this.options.grep_commits, '%H%n%s%n%b%n==END==');
}
Expand Down

0 comments on commit 2888af4

Please sign in to comment.