Skip to content

Commit 93a8ca9

Browse files
committed
fix: continue with commit when commitAll is true
1 parent 0a801d9 commit 93a8ca9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/lifecycles/commit.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ async function execCommit (args, newVersion) {
4646
checkpoint(args, msg, paths)
4747

4848
// nothing to do, exit without commit anything
49-
if (args.skip.changelog && args.skip.bump && toAdd.length === 0) {
49+
if (!args.commitAll && args.skip.changelog && args.skip.bump && toAdd.length === 0) {
5050
return
5151
}
5252

0 commit comments

Comments
 (0)