Skip to content
This repository has been archived by the owner on May 30, 2022. It is now read-only.

Commit

Permalink
fix(changelog): Fixed referencing invalid object
Browse files Browse the repository at this point in the history
  • Loading branch information
adrianlee44 committed Sep 18, 2013
1 parent 0419b3b commit 9dc0967
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion changelog.coffee
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ parseCommit = (log) ->
newCommit = []
for line in commit
if match = line.match /(?:Closes|Fixes)\s#(\d+)/
msg.issues.push parseInt(match[1])
commitObj.issues.push parseInt(match[1])
else
newCommit.push line
commit = newCommit
Expand Down

0 comments on commit 9dc0967

Please sign in to comment.