deis / workflow-cli

The CLI for Deis Workflow
http://deis.com
MIT License
31 stars 43 forks source link

'-a' flag produces different output than '-a=' #22

Open arschles opened 8 years ago

arschles commented 8 years ago

for example, when listing configs:

ENG000656:workflow aaronschlesinger$ deis config:list -a test1
=== test1 Config
A        B
FOO      1
ONE      1
ENG000656:workflow aaronschlesinger$ deis config:list -a=test1
=== =test1 Config

The former and the latter should produce the same output, or one should error.

Replaces deis/workflow#127

Joshua-Anderson commented 8 years ago

This is the expected behavior (posting to add some context from deis/controller#127).

Normal flags are--flagname=<value> and the short version of the flag is -f <value>.

Docopt doesn't really support this.