We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0c04450 commit b917ba6Copy full SHA for b917ba6
src/macaron/console.py
@@ -448,10 +448,11 @@ def make_layout(self) -> Group:
448
"[bold blue]Verification Summary Attestation[/]",
449
self.verification_summary_attestation,
450
)
451
- vsa_table.add_row(
452
- "[bold blue]Decode and Inspect the Content[/]",
453
- f"cat {self.verification_summary_attestation} | jq -r [white]'.payload'[/] | base64 -d | jq",
454
- )
+ if self.verification_summary_attestation != "No VSA generated.":
+ vsa_table.add_row(
+ "[bold blue]Decode and Inspect the Content[/]",
+ f"cat {self.verification_summary_attestation} | jq -r [white]'.payload'[/] | base64 -d | jq",
455
+ )
456
457
layout = layout + [vsa_table]
458
elif self.command == "find-source":
0 commit comments