-
Notifications
You must be signed in to change notification settings - Fork 11
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
Port the scanner to Go #1
Conversation
Signed-off-by: Justin Chadwell <me@jedevc.com>
Signed-off-by: Justin Chadwell <me@jedevc.com>
Signed-off-by: Justin Chadwell <me@jedevc.com>
Have purposely left the |
internal/target.go
Outdated
const defaultSyftVersion = "[not provided]" | ||
|
||
var ( | ||
SyftVersion = defaultSyftVersion |
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.
Can be set directly:
SyftVersion = defaultSyftVersion | |
SyftVersion = "v0.0.0+unknown" |
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.
LGTM, but would like to keep [not provided]
, inline with how syft itself shows an unknown version.
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.
We could propose a change to how syft does this?
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.
LGTM, but would like to keep
[not provided]
, inline with how syft itself shows an unknown version.
Ah ok didn't know they have this pattern, let's keep it like this in the meantime then
Signed-off-by: Justin Chadwell <me@jedevc.com>
No description provided.