pulumi/pkg/diag/colors/windows.go
Matt Ellis 5470418bea Disable ANSI Coloring on Windows
While these codes can be understood on newer versions of Windows 10 (if
we were to set the console properties correctly) in general they do not
work and cause garbage to be printed to the screen.  For now, just don't
colorize output on Windows.
2017-09-21 15:15:32 -07:00

13 lines
204 B
Go

// Copyright 2016-2017, Pulumi Corporation. All rights reserved.
//+build windows
package colors
import (
"github.com/reconquest/loreley"
)
func init() {
loreley.Colorize = loreley.ColorizeNever
}