Skip to content
This repository has been archived by the owner on Feb 5, 2018. It is now read-only.

Commit

Permalink
fix(cli): fix "undefined" in json string
Browse files Browse the repository at this point in the history
  • Loading branch information
stevemao committed Mar 2, 2015
1 parent 4eb1e1e commit b991bde
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cli.js
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ else {
});

stream.pipe(conventionalCommitsParser(cli.flags))
.pipe(JSONStream.stringify(''))
.pipe(JSONStream.stringify('', '', ''))
.pipe(through(function(chunk, enc, cb) {
cb(null, 'result: ' + chunk + '\n\n');
}))
Expand Down

0 comments on commit b991bde

Please sign in to comment.