From 49208e9e3beba3fe6aa8f8f641b5ae54af44fe06 Mon Sep 17 00:00:00 2001 From: LaChRiZ Date: Sat, 14 Jan 2017 16:53:52 +0100 Subject: [PATCH] fixed description in option baseImagesUrl of package command --- src/main.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main.ts b/src/main.ts index 347e899c..3364e2b3 100644 --- a/src/main.ts +++ b/src/main.ts @@ -63,7 +63,7 @@ module.exports = function (argv: string[]): void { .description('Packages an extension') .option('-o, --out [path]', 'Location of the package') .option('--baseContentUrl [url]', 'Prepend all relative links in README.md with this url.') - .option('--baseImagesUrl [url]', 'Prepend all relative image links in README.md will with this url.') + .option('--baseImagesUrl [url]', 'Prepend all relative image links in README.md with this url.') .action(({ out, baseContentUrl, baseImagesUrl }) => main(packageCommand({ packagePath: out, baseContentUrl, baseImagesUrl }))); program @@ -72,7 +72,7 @@ module.exports = function (argv: string[]): void { .option('-p, --pat ', 'Personal Access Token') .option('--packagePath [path]', 'Publish the VSIX package located at the specified path.') .option('--baseContentUrl [url]', 'Prepend all relative links in README.md with this url.') - .option('--baseImagesUrl [url]', 'Prepend all relative image links in README.md will with this url.') + .option('--baseImagesUrl [url]', 'Prepend all relative image links in README.md with this url.') .action((version, { pat, packagePath, baseContentUrl, baseImagesUrl }) => main(publish({ pat, version, packagePath, baseContentUrl, baseImagesUrl }))); program