Skip to content

Commit 7e65c09

Browse files
author
Carson Howard
committed
fixed linter error
1 parent 766d3dd commit 7e65c09

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

lib/repository.js

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -451,7 +451,10 @@ Repository.prototype.continueRebase = function(
451451
rebase = _rebase;
452452
return rebase.commit(null, signature)
453453
.catch(function() {
454-
// we are ignoring errors. This is to prevent issues caused by making this async
454+
// Ignore all errors to prevent
455+
// this routine from choking now
456+
// that we made rebase.commit
457+
// asynchronous
455458
return 0;
456459
});
457460
})

0 commit comments

Comments
 (0)