Skip to content

Commit

Permalink
fix(cli): show digest in stdout in att push command (#812)
Browse files Browse the repository at this point in the history
Signed-off-by: Jose I. Paris <jiparis@chainloop.dev>
  • Loading branch information
jiparis committed May 20, 2024
1 parent 4504a27 commit d030c5b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/cli/cmd/attestation_push.go
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ func newAttestationPushCmd() *cobra.Command {
}

if res.Digest != "" {
logger.Info().Msgf("Attestation Digest: %s", res.Digest)
fmt.Printf("Attestation Digest: %s", res.Digest)
}

return nil
Expand Down

0 comments on commit d030c5b

Please sign in to comment.