Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions packages/contentstack-launch/src/commands/launch/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ export default class Launch extends BaseCommand<typeof Launch> {
}),
'variable-type': Flags.string({
options: [...config.variablePreparationTypeOptions],
description: '[Optional] Choose the type of variables',
description: '[Optional] Provide a variable type.',
}),
'show-variables': Flags.boolean({
hidden: true,
Expand All @@ -67,11 +67,11 @@ export default class Launch extends BaseCommand<typeof Launch> {
}),
alias: Flags.string({
char: 'a',
description: '[Optional]Alias(name) for the delivery token',
description: '[Optional] Alias(name) for the delivery token',
}),
'env-variables': Flags.string({
description:
'[Optional] Provide the environment variables in the format of key:value separated by comma Ex:APP_ENV:prod, TEST_ENV:testVal',
'[Optional] Provide the environment variables in the key:value format, separated by comma Ex:APP_ENV:prod, TEST_ENV:testVal',
}),
};

Expand Down