Skip to content

Commit

Permalink
Fix syft API
Browse files Browse the repository at this point in the history
  • Loading branch information
Ryan Moran authored and sophiewigmore committed Apr 4, 2023
1 parent 0896c2b commit 63d1358
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/ihop/cataloger.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ type Cataloger struct{}

// Scan generates an SBOM for an image tagged in the Docker daemon.
func (c Cataloger) Scan(path string) (SBOM, error) {
input, err := source.ParseInput(fmt.Sprintf("oci-dir:%s", path), "", false)
input, err := source.ParseInput(fmt.Sprintf("oci-dir:%s", path), "")
if err != nil {
return SBOM{}, err
}
Expand Down

0 comments on commit 63d1358

Please sign in to comment.