Skip to content

Commit

Permalink
Merge pull request #10 from wesleytodd/commit-all
Browse files Browse the repository at this point in the history
fix: continue with commit when commitAll is true
  • Loading branch information
TimothyJones authored May 25, 2022
2 parents 5ecfa2e + 93a8ca9 commit 08a0121
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/lifecycles/commit.js
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ async function execCommit (args, newVersion) {
checkpoint(args, msg, paths)

// nothing to do, exit without commit anything
if (args.skip.changelog && args.skip.bump && toAdd.length === 0) {
if (!args.commitAll && args.skip.changelog && args.skip.bump && toAdd.length === 0) {
return
}

Expand Down

0 comments on commit 08a0121

Please sign in to comment.