We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent df4a2dd commit c869c2aCopy full SHA for c869c2a
tasks/changelog.js
@@ -54,7 +54,7 @@ module.exports = function( grunt ) {
54
cmd: "git",
55
args: ["log", "--pretty=format:'* %s (%an)'", lastTag + "..HEAD"]
56
}, function(error, result) {
57
- var prettyPrint = result.stdout.split("'\n'").join("\n").replace(/\"$/, "").replace(/^\"/, "");
+ var prettyPrint = result.stdout.split("'\n'").join("\n").replace(/\"$/, "").replace(/^\"/, "").replace(/^\'/, "").replace(/\'$/, "");
58
59
grunt.verbose.writeln().write(prettyPrint).writeln();
60
0 commit comments