1
0
mirror of https://github.com/goreleaser/goreleaser.git synced 2025-01-30 04:50:45 +02:00

fix: CI is not Travis

This commit is contained in:
Carlos Alexandro Becker 2018-10-26 18:19:51 -03:00 committed by Carlos Alexandro Becker
parent 4f36070338
commit 7856c691cc

View File

@ -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)