@@ -714,24 +714,20 @@ func handleError(err error, baseName, commandName, commandPath string, config *n
714
714
transformError (err , baseName , commandName , commandPath , groups )
715
715
}
716
716
buf := & bytes.Buffer {}
717
- if len (config .ArgumentClassificationErrors ) > 0 {
718
- fmt .Fprintf (buf , "Errors occurred while determining argument types:\n " )
719
- for _ , classErr := range config .ArgumentClassificationErrors {
720
- fmt .Fprintf (buf , fmt .Sprintf ("\n %s: %v\n " , classErr .Key , classErr .Value ))
721
- }
722
- fmt .Fprint (buf , "\n " )
723
- // this print serves as a header for the printing of the errorGroups, but
724
- // only print it if we precede with classification errors, to help distinguish
725
- // between the two
726
- fmt .Fprintln (buf , "Errors occurred during resource creation:" )
727
- }
728
717
for _ , group := range groups {
729
718
fmt .Fprint (buf , kcmdutil .MultipleErrors ("error: " , group .errs ))
730
719
if len (group .suggestion ) > 0 {
731
720
fmt .Fprintln (buf )
732
721
}
733
722
fmt .Fprint (buf , group .suggestion )
734
723
}
724
+ if len (config .ArgumentClassificationErrors ) > 0 && len (groups ) > 0 {
725
+ fmt .Fprintf (buf , "\n For further assistance, %s classification of the argument types resulted in the following:\n " , commandName )
726
+ for _ , classErr := range config .ArgumentClassificationErrors {
727
+ fmt .Fprintf (buf , fmt .Sprintf ("\n %s: %v\n " , classErr .Key , classErr .Value ))
728
+ }
729
+ fmt .Fprintf (buf , fmt .Sprintf ("\n %s" , config .ArgumentClassificationWinner ))
730
+ }
735
731
return fmt .Errorf (buf .String ())
736
732
}
737
733
0 commit comments