From b5171218f6e022b3bbcfe1388bf2556ad43262a2 Mon Sep 17 00:00:00 2001 From: Will Dollman Date: Fri, 11 Oct 2024 11:43:33 +0100 Subject: [PATCH] Tweak tlog warning --- cmd/src/sbom_fetch.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/cmd/src/sbom_fetch.go b/cmd/src/sbom_fetch.go index c06888438a..7ac6b9c6ba 100644 --- a/cmd/src/sbom_fetch.go +++ b/cmd/src/sbom_fetch.go @@ -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