We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
The vexctl create --help gives this example
vexctl create --help
vexctl create --product="pkg:apk/wolfi/git@2.39.0-r1?arch=x86_64" \ --product="pkg:apk/wolfi/git@2.39.0-r1?arch=armv7" \ --vuln="CVE-2023-12345" \ --status="fixed"
Running this command however only outputs the last --product:
--product
$ vexctl create --product="pkg:apk/wolfi/git@2.39.0-r1?arch=x86_64" \ --product="pkg:apk/wolfi/git@2.39.0-r1?arch=armv7" \ --vuln="CVE-2023-12345" \ --status="fixed" { "@context": "https://openvex.dev/ns/v0.2.0", "@id": "https://openvex.dev/docs/public/vex-a582a5c0870717337ed44decdab46b963e31a1d76d085aab11760801788da3d4", "author": "Unknown Author", "timestamp": "2024-08-16T12:55:57.430219-04:00", "version": 1, "statements": [ { "vulnerability": { "name": "CVE-2023-12345" }, "timestamp": "2024-08-16T12:55:57.43022-04:00", "products": [ { ### --> was expecting to see "pkg:apk/wolfi/git@2.39.0-r1?arch=x86_64" here <-- "@id": "pkg:apk/wolfi/git@2.39.0-r1?arch=armv7" } ], "status": "fixed" } ] }
I don't know go, here's where --product options are read
vexctl/internal/cmd/create.go
Lines 89 to 97 in 1853391
and output here?
vexctl/internal/cmd/options.go
Lines 224 to 231 in 1853391
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The
vexctl create --help
gives this exampleRunning this command however only outputs the last
--product
:I don't know go, here's where
--product
options are readvexctl/internal/cmd/create.go
Lines 89 to 97 in 1853391
and output here?
vexctl/internal/cmd/options.go
Lines 224 to 231 in 1853391
The text was updated successfully, but these errors were encountered: