diff --git a/cli/nodeutil.ts b/cli/nodeutil.ts index b3646db69d48..1cd3695cd743 100644 --- a/cli/nodeutil.ts +++ b/cli/nodeutil.ts @@ -284,7 +284,7 @@ export async function npmVersionBumpAsync( ): Promise { const output = await spawnWithPipeAsync({ cmd: addCmd("npm"), - args: ["version", bumpType, "--message", `"[pxt-cli] bump version to %s"`, "--git-tag-version", tagCommit ? "true" : "false"], + args: ["version", bumpType, "--message", `[pxt-cli] bump version to %s`, "--git-tag-version", tagCommit ? "true" : "false"], cwd: ".", silent: true, }); @@ -299,7 +299,7 @@ export async function npmVersionBumpAsync( }); await spawnAsync({ cmd: "git", - args: ["commit", "-m", `"[pxt-cli] bump version to ${ver}"`], + args: ["commit", "-m", `[pxt-cli] bump version to ${ver}`], cwd: ".", silent: true, });