Skip to content

Commit 345cb97

Browse files
author
OpenShift Bot
authored
Merge pull request #13541 from gabemontero/13491
Merged by openshift-bot
2 parents 8dfe5dd + 79eae25 commit 345cb97

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

pkg/cmd/cli/cmd/newapp.go

+4-1
Original file line numberDiff line numberDiff line change
@@ -633,8 +633,11 @@ func handleError(err error, baseName, commandName, commandPath string, config *n
633633
fmt.Fprintf(buf, fmt.Sprintf("\n%s: %v\n", classErr.Key, classErr.Value))
634634
}
635635
fmt.Fprint(buf, "\n")
636+
// this print serves as a header for the printing of the errorGroups, but
637+
// only print it if we precede with classification errors, to help distinguish
638+
// between the two
639+
fmt.Fprintln(buf, "Errors occurred during resource creation:")
636640
}
637-
fmt.Fprintln(buf, "Errors occurred during resource creation:")
638641
for _, group := range groups {
639642
fmt.Fprint(buf, kcmdutil.MultipleErrors("error: ", group.errs))
640643
if len(group.suggestion) > 0 {

0 commit comments

Comments
 (0)