fix(gitlog): increase maxBuffer
This is needed for repositories with a lot of commits and/or a big changelog. Closes #286
This commit is contained in:
committed by
Stephan Bönnemann
parent
15e6daf7cc
commit
a5cb9ea7f7
@@ -4,7 +4,10 @@ const rawCommits = [
|
||||
]
|
||||
|
||||
module.exports = {
|
||||
exec: function (command, cb) {
|
||||
exec: function (command, options, cb) {
|
||||
if (typeof cb === 'undefined' && typeof options === 'function') {
|
||||
cb = options
|
||||
}
|
||||
if (/contains/.test(command)) {
|
||||
if (/notinhistory/.test(command)) return cb(new Error())
|
||||
return cb(null, 'whatever\nmaster\n')
|
||||
|
||||
Reference in New Issue
Block a user