Skip to content

Commit

Permalink
clean commit message (#897)
Browse files Browse the repository at this point in the history
  • Loading branch information
joaomoreno authored Sep 11, 2023
1 parent 11223c3 commit 70b844e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/package.ts
Original file line number Diff line number Diff line change
Expand Up @@ -384,7 +384,7 @@ export async function versionBump(options: IVersionBumpOptions): Promise<void> {
let command = `npm version ${options.version}`; // CodeQL [SM03609] options.version is checked above.

if (options.commitMessage) {
command = `${command} -m "${options.commitMessage}"`;
command = `${command} -m "${options.commitMessage.replace(/"/g, '')}"`;
}

if (!(options.gitTagVersion ?? true)) {
Expand Down

0 comments on commit 70b844e

Please sign in to comment.