-
Notifications
You must be signed in to change notification settings - Fork 16
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
CLI program argument parsing fails if colon in program args #75
Comments
#80 adds tests for this. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
When a program is invoked with args containing a colon (
:
), the arg parser setsendpoint_index
to be the program arg containing the colon, and in my case that resulted in this backtrace:Presumably that backtrace indicates there is a need for
resolve_dependencies
to better handle strange input, but the more pressing problem is that the arg parsing needs to be improved so that there are no constraints on the program args which jgo should ignore.The text was updated successfully, but these errors were encountered: