Skip to content

Commit

Permalink
fixup! leo feedback
Browse files Browse the repository at this point in the history
  • Loading branch information
elchead committed Oct 6, 2023
1 parent 02ae569 commit 8ea7593
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion cli/internal/cmd/verify.go
Original file line number Diff line number Diff line change
Expand Up @@ -89,8 +89,10 @@ func runVerify(cmd *cobra.Command, _ []string) error {
return &jsonAttestationDocFormatter{log}, nil
case "raw":
return &rawAttestationDocFormatter{log}, nil
default:
case "":
return &defaultAttestationDocFormatter{log}, nil
default:
return nil, fmt.Errorf("invalid output value for formatter: %s", output)
}
}
v := &verifyCmd{log: log}
Expand Down

0 comments on commit 8ea7593

Please sign in to comment.