You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Oclif does not properly parse flags with multiple = true and args, unless flags are after args. The command $ command --flag=value arg
will always be produce flag = ["value", "arg"]. This forces the user to always place flags with multiple at the end of the command after all the required args $ command arg --flag=value
Oclif does not properly parse flags with multiple = true and args, unless flags are after args. The command
$ command --flag=value arg
will always be produce flag = ["value", "arg"]. This forces the user to always place flags with multiple at the end of the command after all the required args
$ command arg --flag=value
See: oclif/parser#25
https://github.com/oclif/parser/pull/25/files
The text was updated successfully, but these errors were encountered: