From d87c9ec401f0c3ac925e3e74ce374f81d15539e6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Popovics=20Andr=C3=A1s?= Date: Wed, 20 Nov 2019 16:28:17 +0100 Subject: [PATCH] [AAE-880] Fix updater script in the cli (#5273) --- lib/cli/scripts/update-version.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/lib/cli/scripts/update-version.ts b/lib/cli/scripts/update-version.ts index cadbc3accb..713bfb1ffb 100644 --- a/lib/cli/scripts/update-version.ts +++ b/lib/cli/scripts/update-version.ts @@ -126,10 +126,10 @@ export default function (args: UpdateArgs) { function main(args) { program - .version('This command allows you to update the adf dependencies and js-api with different versions\n\n' + - 'Update adf libs and js-api with latest alpha\n\n' + - 'adf-cli update-version --alpha --pathPackage "$(pwd)"') - .description('') + .version('0.1.0', '-vers') + .description('This command allows you to update the adf dependencies and js-api with different versions\n\n' + + 'Update adf libs and js-api with latest alpha\n\n' + + 'adf-cli update-version --alpha --pathPackage "$(pwd)"') .option('--pathPackage [type]', 'pathPackage') .option('--alpha [type]', 'use alpha') .option('--beta [type]', 'use beta')