From 9d728316c58c7472b725888c69219366a79d13e6 Mon Sep 17 00:00:00 2001 From: Michael Xu Date: Mon, 7 Aug 2017 13:40:06 -0700 Subject: [PATCH] Dont print errors - The cf cli already outputs enough failure messages to debug what went wrong in a push [149892994] Pushums should report failure when the SLI push fails to target --- main.go | 3 --- 1 file changed, 3 deletions(-) diff --git a/main.go b/main.go index 0995a96..9427511 100644 --- a/main.go +++ b/main.go @@ -46,9 +46,6 @@ func main() { sli_executor := sli_executor.NewSliExecutor(cf_cli) result, err := sli_executor.RunTest(app_name, *buildpack, *app_bits_path, config) - if err != nil { - fmt.Fprintf(os.Stdout, err.Error()) - } output := &Output{ Route: app_name + "." + config.Domain,