Skip to content

Commit

Permalink
Tweak tlog warning
Browse files Browse the repository at this point in the history
  • Loading branch information
willdollman committed Oct 11, 2024
1 parent c22b6ce commit b517121
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion cmd/src/sbom_fetch.go
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,8 @@ Examples:
out.Writef("Fetching SBOMs and validating signatures for all %d images in the Sourcegraph %s release...\n", len(images), c.version)

if c.insecureIgnoreTransparencyLog {
out.WriteLine(output.Line("⚠️", output.StyleWarning, "WARNING: Transparency log verification is disabled, increasing the risk that SBOMs may have been tampered with.\nThis setting should only be used for testing or under explicit instruction from Sourcegraph.\n"))
out.WriteLine(output.Line("⚠️", output.StyleWarning, "WARNING: Transparency log verification is disabled, increasing the risk that SBOMs may have been tampered with."))
out.WriteLine(output.Line("️", output.StyleWarning, " This setting should only be used for testing or under explicit instruction from Sourcegraph.\n"))
}

var successCount, failureCount int
Expand Down

0 comments on commit b517121

Please sign in to comment.