Skip to content

Commit

Permalink
fix(commit-release): remove quotes from commit message template (#169)
Browse files Browse the repository at this point in the history
  • Loading branch information
RealShadowNova committed Apr 23, 2024
1 parent 5a011aa commit 9fcab96
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/commands/commit-release.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ export function commitRelease(options: Options, newVersion: string) {

return doActionAndLog('Committing release', async () => {
if (!options.dryRun) {
await execa('git', ['commit', '--no-verify', '-m', `"${options.commitMessageTemplate}"`]);
await execa('git', ['commit', '--no-verify', '-m', `${options.commitMessageTemplate}`]);
}
});
}

0 comments on commit 9fcab96

Please sign in to comment.