-
-
Notifications
You must be signed in to change notification settings - Fork 64
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
Help is in the wrong order? #382
Comments
This seems to come directly from System.CommandLine (see https://learn.microsoft.com/en-us/dotnet/standard/commandline/). I did not see what is causing it or how it could be changed. |
If I update the version of System.CommandLine, I get:
i.e. it seems to be fixed by the newer version. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
As you can see here, much of the help starts with this pattern
cyclonedx [options] command
Yet you can't put the options before the command, you'll get an error.
It should read
cyclonedx command [options]
The text was updated successfully, but these errors were encountered: