-
Notifications
You must be signed in to change notification settings - Fork 480
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
parsing fails when value matches name of list parameter #396
Comments
@moh-hassan Interesting. I'll take a look. |
Initial findings: the tokenizer returned a Name token for But I just stepped through the tokenizer and watched it happen, and the tokenizer initially returned a Name token for BTW, my GetoptTokenizer implementation from PR #684 also contains this bug, because I re-used that ExplodeOptionList method without any changes. So when I find and fix this bug, I'll also submit an update to PR #684. Please don't merge #684 until then, or you'll be merging known-buggy code that I'm working on a fix for. |
Related, though not the same bug: #687 (which I'll also submit a fix for). |
Parsing fails if passed
--configure-profile deploy --profile local
withRequired option 'profile' is missing.
I think it's intepreting the
deploy
value as an option.The text was updated successfully, but these errors were encountered: