Skip to content

Commit 3ee6967

Browse files
authored
fix: commit all when using -a
1 parent e0019fd commit 3ee6967

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/lifecycles/commit.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ async function execCommit(args, newVersion) {
6060
await runExecFile(
6161
args,
6262
'git',
63-
['commit'].concat(verify, sign, signoff, args.commitAll ? [] : toAdd, [
63+
['commit'].concat(verify, sign, signoff, args.commitAll ? ['.'] : toAdd, [
6464
'-m',
6565
`${formatCommitMessage(args.releaseCommitMessageFormat, newVersion)}`,
6666
]),

0 commit comments

Comments
 (0)