Skip to content

Commit

Permalink
fix(git): respect default CommitOptions correctly
Browse files Browse the repository at this point in the history
  • Loading branch information
hasundue committed Oct 21, 2023
1 parent 7240e73 commit 68d8ffb
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/git.ts
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,10 @@ export function commitAll(
options?: CommitOptions,
): void {
execGitCommitSequence(
createGitCommitSequence(updates, options),
createGitCommitSequence(updates, {
...defaultCommitOptions,
...options,
}),
);
}

Expand Down

0 comments on commit 68d8ffb

Please sign in to comment.