Skip to content

Commit

Permalink
Add CodeQL suppression comment (#894)
Browse files Browse the repository at this point in the history
  • Loading branch information
rzhao271 authored Aug 21, 2023
1 parent 446c1de commit eb0b8b9
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 @@ -380,7 +380,7 @@ export async function versionBump(options: IVersionBumpOptions): Promise<void> {
}
}

let command = `npm version ${options.version}`;
let command = `npm version ${options.version}`; // CodeQL [SM03609] options.version is checked above.

if (options.commitMessage) {
command = `${command} -m "${options.commitMessage}"`;
Expand Down

0 comments on commit eb0b8b9

Please sign in to comment.