From d6bcc3df4317e62f96a5f1dc4e3df64ceade513e Mon Sep 17 00:00:00 2001 From: Sandeep Somavarapu Date: Mon, 3 Jun 2024 17:18:45 +0200 Subject: [PATCH] fix sign tool arg (#987) --- src/main.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main.ts b/src/main.ts index e11843f3..dfb8a240 100644 --- a/src/main.ts +++ b/src/main.ts @@ -117,7 +117,7 @@ module.exports = function (argv: string[]): void { .option('--allow-star-activation', 'Allow using * in activation events') .option('--allow-missing-repository', 'Allow missing a repository URL in package.json') .option('--skip-license', 'Allow packaging without license file') - .option('--sign-tool', 'Path to the VSIX signing tool. Will be invoked with two arguments: `SIGNTOOL `.') + .option('--sign-tool ', 'Path to the VSIX signing tool. Will be invoked with two arguments: `SIGNTOOL `.') .action( ( version, @@ -198,7 +198,7 @@ module.exports = function (argv: string[]): void { .option('--no-update-package-json', 'Do not update `package.json`. Valid only when [version] is provided.') .option('-i, --packagePath ', 'Publish the provided VSIX packages.') .option('--sigzipPath ', 'Signature archives to publish alongside the VSIX packages.') - .option('--sign-tool', 'Path to the VSIX signing tool. Will be invoked with two arguments: `SIGNTOOL `. This will be ignored if --sigzipPath is provided.') + .option('--sign-tool ', 'Path to the VSIX signing tool. Will be invoked with two arguments: `SIGNTOOL `. This will be ignored if --sigzipPath is provided.') .option( '--githubBranch ', 'The GitHub branch used to infer relative links in README.md. Can be overridden by --baseContentUrl and --baseImagesUrl.'