We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 17c76a7 commit 95caab7Copy full SHA for 95caab7
1 file changed
pkg/cmdlets/errors/errors.go
@@ -67,6 +67,7 @@ func (o *OutputError) MarshalOutput(f output.Format) interface{} {
67
68
// Print tips
69
if enableTips := os.Getenv(constants.DisableErrorTipsEnvVarName) != "true"; enableTips {
70
+ outLines = append(outLines, "") // separate error from "Need More Help?" header
71
outLines = append(outLines, output.Title(locale.Tl("err_more_help", "Need More Help?")).String())
72
for _, tip := range errorTips {
73
outLines = append(outLines, fmt.Sprintf(" [DISABLED]•[/RESET] %s", trimError(tip)))
0 commit comments