Skip to content

Commit 2819afb

Browse files
authored
campaigns: wrap the troubleshooting suggestion (#452)
1 parent 97354de commit 2819afb

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

cmd/src/campaigns_common.go

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -385,7 +385,10 @@ func printExecutionError(out *output.Output, err error) {
385385
}
386386

387387
out.Write("")
388-
out.WriteLine(output.Line(output.EmojiLightbulb, output.StyleSuggestion, "The troubleshooting documentation can help to narrow down the cause of the errors: https://docs.sourcegraph.com/campaigns/references/troubleshooting"))
388+
389+
block := out.Block(output.Line(output.EmojiLightbulb, output.StyleSuggestion, "The troubleshooting documentation can help to narrow down the cause of the errors:"))
390+
block.WriteLine(output.Line("", output.StyleSuggestion, "https://docs.sourcegraph.com/campaigns/references/troubleshooting"))
391+
block.Close()
389392
}
390393

391394
func flattenErrs(err error) (result []error) {

0 commit comments

Comments
 (0)