bump error language and remove panic (#862)

* bump error language and remove panic

Signed-off-by: Christopher Phillips <christopher.phillips@anchore.com>
This commit is contained in:
Christopher Angelo Phillips 2022-03-03 10:37:18 -05:00 committed by GitHub
parent 4a8a9ce290
commit ad322b3314
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 3 deletions

View file

@ -125,7 +125,7 @@ func attestExec(ctx context.Context, _ *cobra.Command, args []string) error {
userInput := args[0]
si, err := source.ParseInput(userInput, false)
if err != nil {
return fmt.Errorf("could not generate source input for attest command: %q", err)
return fmt.Errorf("could not generate source input for attest command: %w", err)
}
switch si.Scheme {

View file

@ -231,7 +231,7 @@ func packagesExec(_ *cobra.Command, args []string) error {
userInput := args[0]
si, err := source.ParseInput(userInput, true)
if err != nil {
return fmt.Errorf("could not generate source input for attest command: %q", err)
return fmt.Errorf("could not generate source input for packages command: %w", err)
}
return eventLoop(
@ -306,7 +306,7 @@ func packagesExecWorker(si source.Input, writer sbom.Writer) <-chan error {
}
if s == nil {
panic("nil sbomb returned with no error")
errs <- fmt.Errorf("no SBOM produced for %q", si.UserInput)
}
if appConfig.Anchore.Host != "" {