Open shazron opened 2 months ago
JIRA issue created: https://jira.corp.adobe.com/browse/ACNA-3110
The command is doing something weird, in that it inherits from another command. It shouldn't do so, in this case it is essentially just the list command (not an alias. the alias here is implicit). It should do something like this instead: https://github.com/adobe/aio-cli-plugin-app/blob/master/src/commands/app/index.js
JIRA issue created: https://jira.corp.adobe.com/browse/ACNA-3111
From a user:
Proxy support section on this page https://github.com/adobe/aio-cli?tab=readme-ov-file#proxy-support says set environment variable (refer image) and same page has a section dedicated to setting up environment variable (refer image). That is causing confusion.
I was trying to setup environment variable as following which are both wrong. aio config -e HTTP_PROXY=https://user:password@example.com/ aio config -e HTTP_PROXY https://user:password@example.com/
Explanation
aio config
is actually an alias foraio config list
, but it also listsget
,set
,edit
etc in its help. Users are confused here sinceaio config
also lists the whole help foraio config
(and its subcommands), as well as it being the alias foraio config list
and showing the flags for that.