diff --git a/.vscode/launch.json b/.vscode/launch.json index 856d350..ab42517 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -4,6 +4,7 @@ // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 "version": "0.2.0", "configurations": [ + @@ -95,6 +96,14 @@ "program": "${workspaceFolder}/main.go", "args": ["--provider=ossindex", "--debug=true", "scan", "./_TESTDATA_/sbom/railsgoat.cyclonedx.json"] }, + { + "name": "Debug File (osv - railsgoat)", + "type": "go", + "request": "launch", + "mode": "auto", + "program": "${workspaceFolder}/main.go", + "args": ["--provider=osv", "--debug=true", "scan", "./_TESTDATA_/sbom/railsgoat.cyclonedx.json"] + }, { "name": "Debug File, Output JSON (ossindex - railsgoat)", "type": "go", diff --git a/cmd/root.go b/cmd/root.go index aba92b1..f41312f 100644 --- a/cmd/root.go +++ b/cmd/root.go @@ -16,7 +16,7 @@ import ( ) var ( - version = "0.4.4" + version = "0.4.6" output string //Afs stores a global OS Filesystem that is used throughout bomber Afs = &afero.Afero{Fs: afero.NewOsFs()}