Skip to content

Commit d030c5b

Browse files
authored
fix(cli): show digest in stdout in att push command (#812)
Signed-off-by: Jose I. Paris <[email protected]>
1 parent 4504a27 commit d030c5b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/cli/cmd/attestation_push.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ func newAttestationPushCmd() *cobra.Command {
9393
}
9494

9595
if res.Digest != "" {
96-
logger.Info().Msgf("Attestation Digest: %s", res.Digest)
96+
fmt.Printf("Attestation Digest: %s", res.Digest)
9797
}
9898

9999
return nil

0 commit comments

Comments
 (0)