Merge pull request #69 from tonistiigi/progress-env

progress: add env config
pull/71/head
Tõnis Tiigi 6 years ago committed by GitHub
commit dcd8ca9308
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -39,6 +39,10 @@ func NewPrinter(ctx context.Context, out *os.File, mode string) Writer {
done: doneCh,
}
if v := os.Getenv("BUILDKIT_PROGRESS"); v != "" && mode == "auto" {
mode = v
}
go func() {
var c console.Console
if cons, err := console.ConsoleFromFile(out); err == nil && (mode == "auto" || mode == "tty") {

Loading…
Cancel
Save