From 7856c691cc6e4f6cabc1e3e01baca792a31b5d33 Mon Sep 17 00:00:00 2001 From: Carlos Alexandro Becker Date: Fri, 26 Oct 2018 18:19:51 -0300 Subject: [PATCH] fix: CI is not Travis --- main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.go b/main.go index 4f1f6ac9c..a4ed2db8b 100644 --- a/main.go +++ b/main.go @@ -39,7 +39,7 @@ type releaseOptions struct { func init() { // enable colored output on travis - if os.Getenv("CI") == "Travis" { + if os.Getenv("CI") != "" { color.NoColor = false } log.SetHandler(cli.Default)