diff --git a/cmd/info.go b/cmd/info.go index fbbeca59..7f1b2d82 100644 --- a/cmd/info.go +++ b/cmd/info.go @@ -161,7 +161,7 @@ func InfoProccCmd() *cobra.Command { func inform(typ string, summary string, err error) error { if err != nil { - fmt.Println(term.Redf("ERROR:"), term.Redf(err.Error())) + fmt.Println(term.Redf("ERROR: %s", err.Error())) fmt.Println(term.Bluef("\nUse 'meteor list %s' for the list of supported %s.", typ, typ)) return nil } diff --git a/cmd/run.go b/cmd/run.go index 6378cee9..1a5a21d1 100644 --- a/cmd/run.go +++ b/cmd/run.go @@ -120,10 +120,10 @@ func RunCmd() *cobra.Command { if run.Error != nil { lg.Error(run.Error.Error(), "recipe", run.Recipe.Name) failures++ - row = append(row, term.FailureIcon(), run.Recipe.Name, term.Grey(run.Recipe.Source.Name), term.Greyf("%v ms", strconv.Itoa(run.DurationInMs)), term.Greyf(strconv.Itoa(run.RecordCount))) + row = append(row, term.FailureIcon(), run.Recipe.Name, term.Grey(run.Recipe.Source.Name), term.Greyf("%v ms", strconv.Itoa(run.DurationInMs)), term.Greyf("%s", strconv.Itoa(run.RecordCount))) } else { success++ - row = append(row, term.SuccessIcon(), run.Recipe.Name, term.Grey(run.Recipe.Source.Name), term.Greyf("%v ms", strconv.Itoa(run.DurationInMs)), term.Greyf(strconv.Itoa(run.RecordCount))) + row = append(row, term.SuccessIcon(), run.Recipe.Name, term.Grey(run.Recipe.Source.Name), term.Greyf("%v ms", strconv.Itoa(run.DurationInMs)), term.Greyf("%s", strconv.Itoa(run.RecordCount))) } report = append(report, row) if err = bar.Add(1); err != nil {