Skip to content

Commit df8bc33

Browse files
authored
fix(cli): show full output (#928)
Signed-off-by: Miguel Martinez Trivino <[email protected]>
1 parent 41ce282 commit df8bc33

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

app/cli/cmd/attestation_status.go

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,12 @@ func newAttestationStatusCmd() *cobra.Command {
5151
return err
5252
}
5353

54-
return encodeOutput(res, simpleStatusTable)
54+
output := simpleStatusTable
55+
if full {
56+
output = fullStatusTable
57+
}
58+
59+
return encodeOutput(res, output)
5560
},
5661
}
5762

0 commit comments

Comments
 (0)