-
Notifications
You must be signed in to change notification settings - Fork 144
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
Allow multiple --proto_path #94
Conversation
a07a9e3
to
c12a7a7
Compare
I am not sure if package |
The I've always used multiple -I (--proto_path) flags to |
Name: "proto_path", | ||
Value: ".", | ||
Usage: "the directory in which for protoc to search for imports", | ||
Value: &cli.StringSlice{"."}, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
What's the behavior of this value? If the user specifies value(s) will they override this slice or append to it?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Since 2016, it overrides: urfave/cli#160
Modifies the CLI arguments to allow multiple
--proto_path
flags that are propagated to the protocol compiler.