Skip to content

Commit 72c407f

Browse files
chore: apply automated lint fixes
1 parent f0524fb commit 72c407f

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

src/commands/default.ts

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,11 @@ export default async function defaultMain(args: Argv) {
133133
"{{newVersion}}",
134134
config.newVersion
135135
);
136-
await execa("git", ["tag", ...(config.signTags ? ["-s"] : []), "-am", msg, body], { cwd });
136+
await execa(
137+
"git",
138+
["tag", ...(config.signTags ? ["-s"] : []), "-am", msg, body],
139+
{ cwd }
140+
);
137141
}
138142
if (args.push === true) {
139143
await execa("git", ["push", "--follow-tags"], { cwd });

0 commit comments

Comments
 (0)