Skip to content

Commit

Permalink
fix(release): correct quotes on release please commit message
Browse files Browse the repository at this point in the history
  • Loading branch information
NathanFlurry committed Jan 5, 2025
1 parent bf35607 commit c38d89b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/release/release_please.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,5 @@ export async function configureReleasePlease(opts: ReleaseOpts) {
// Check if the Release-As commit already exists
const commitMessage = `chore: release ${opts.version}`;
$.logStep("Updating Release Please", commitMessage);
await $`git commit --allow-empty -m "${commitMessage}" -m "Release-As: ${opts.version}"`;
await $`git commit --allow-empty -m ${commitMessage} -m ${`Release-As: ${opts.version}`}`;
}

0 comments on commit c38d89b

Please sign in to comment.