Skip to content

Commit

Permalink
chore: apply automated lint fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
autofix-ci[bot] authored Mar 6, 2024
1 parent f0524fb commit 72c407f
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/commands/default.ts
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,11 @@ export default async function defaultMain(args: Argv) {
"{{newVersion}}",
config.newVersion
);
await execa("git", ["tag", ...(config.signTags ? ["-s"] : []), "-am", msg, body], { cwd });
await execa(
"git",
["tag", ...(config.signTags ? ["-s"] : []), "-am", msg, body],
{ cwd }
);
}
if (args.push === true) {
await execa("git", ["push", "--follow-tags"], { cwd });
Expand Down

0 comments on commit 72c407f

Please # to comment.