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
Support intuitive positional parameters, e.g. get-consistency-proof 100 200 instead of get-consistency-proof --flag_for_first_size=100 --flag_for_second_size=200.
The text was updated successfully, but these errors were encountered:
All of the parameterization to the subcommands is performed by flags. However, as the subcommands themselves are selected via normal arguments (no hyphens), this can lead to newcomers (e.g. me) believing that the log to fetch from could also be a bare argument. On something like get-entries, there was no way to know that the logname was ignored. Now, this will explode and the user gets the option to reconsider how they are specifying the parameters.
e.g. `go run github.com/google/certificate-transparency-go/client/ctclient@master get-entries submariner --first 35494500 --last 35494590` looks very reasonable and returns data, but it isn't from submariner.
#900
get-consistency-proof 100 200
instead ofget-consistency-proof --flag_for_first_size=100 --flag_for_second_size=200
.The text was updated successfully, but these errors were encountered: