mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-07-24 17:32:15 +00:00
[AAE-9169] adf-cli - Change the doc and add clientId input (#7730)
* Change the doc and add input * fix mistake
This commit is contained in:
@@ -12,13 +12,14 @@ export default async function main(_args: string[]) {
|
||||
.version('0.1.0')
|
||||
.option('--host [type]', 'Remote environment host')
|
||||
.option('--pluginName [type]', 'pluginName')
|
||||
.option('--clientId [type]', 'sso client', 'alfresco')
|
||||
.option('--appName [type]', 'appName ', 'Deployed appName on activiti-cloud')
|
||||
.option('-p, --password [type]', 'password ')
|
||||
.option('-u, --username [type]', 'username ')
|
||||
.option('--ui, --uiName [type]', 'uiName', 'Deployed app UI type on activiti-cloud')
|
||||
.parse(process.argv);
|
||||
|
||||
pluginEnv = new CheckEnv(program.host, program.username, program.password);
|
||||
pluginEnv = new CheckEnv(program.host, program.username, program.password, program.clientId);
|
||||
await pluginEnv.checkEnv();
|
||||
|
||||
if (program.pluginName === PluginTarget.processService) {
|
||||
|
Reference in New Issue
Block a user