Skip to content

Commit

Permalink
Tweak CHANGELOG output.
Browse files Browse the repository at this point in the history
  • Loading branch information
XhmikosR committed Jan 7, 2016
1 parent df4a2dd commit c869c2a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tasks/changelog.js
Expand Up @@ -54,7 +54,7 @@ module.exports = function( grunt ) {
cmd: "git",
args: ["log", "--pretty=format:'* %s (%an)'", lastTag + "..HEAD"]
}, function(error, result) {
var prettyPrint = result.stdout.split("'\n'").join("\n").replace(/\"$/, "").replace(/^\"/, "");
var prettyPrint = result.stdout.split("'\n'").join("\n").replace(/\"$/, "").replace(/^\"/, "").replace(/^\'/, "").replace(/\'$/, "");

grunt.verbose.writeln().write(prettyPrint).writeln();

Expand Down

0 comments on commit c869c2a

Please sign in to comment.