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
{{ message }}
This repository has been archived by the owner on Dec 7, 2019. It is now read-only.
Hi,
I would like to provide the parameter name with positional value parameter.
Currently, if I pass the name it appends that name to the value.
Example:
Expected results
[
'project' => 1,
'name' => 'Test',
]
Actual results
[
'project' => 'project=1',
'name' => 'name=Test',
]
I know, I can add an optional parameter like [--project=1] and then add a check on code level. But I don't want to do this.
Is there any possibility we can achieve this?
Any help would be much appreciated.
Thanks
The text was updated successfully, but these errors were encountered: