Skip to content

Commit

Permalink
fix(log): correctly generate links to GitHub commits
Browse files Browse the repository at this point in the history
  • Loading branch information
pkozlowski-opensource committed Jun 22, 2013
1 parent 579cda4 commit de15bde
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tasks/changelog.js
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ module.exports = function (grunt) {
//Generates a commit link if we have a repo, else it generates a plain text commit sha1
commitLink: function(commit) {
if (githubRepo) {
return '[' + commit + '](' + githubRepo + '/commits/' + commit + ')';
return '[' + commit + '](' + githubRepo + '/commit/' + commit + ')';
} else {
return commit;
}
Expand Down

0 comments on commit de15bde

Please sign in to comment.