From eb0b8b9b004890f23168776beefe24aec8877e66 Mon Sep 17 00:00:00 2001 From: Raymond Zhao <7199958+rzhao271@users.noreply.github.com> Date: Mon, 21 Aug 2023 09:56:33 -0700 Subject: [PATCH] Add CodeQL suppression comment (#894) --- src/package.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/package.ts b/src/package.ts index 7cdd0424..4eaaa064 100644 --- a/src/package.ts +++ b/src/package.ts @@ -380,7 +380,7 @@ export async function versionBump(options: IVersionBumpOptions): Promise { } } - 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}"`;