mirror of
https://github.com/opentofu/opentofu.git
synced 2025-02-25 18:45:20 -06:00
Don't color output if stdout is not a tty
This commit is contained in:
parent
541d23eea0
commit
8dc842aa8e
@ -4,6 +4,7 @@ import (
|
||||
"os"
|
||||
"os/signal"
|
||||
|
||||
"code.google.com/p/go.crypto/ssh/terminal"
|
||||
"github.com/hashicorp/terraform/command"
|
||||
"github.com/mitchellh/cli"
|
||||
)
|
||||
@ -27,6 +28,7 @@ func init() {
|
||||
}
|
||||
|
||||
meta := command.Meta{
|
||||
Color: terminal.IsTerminal(int(os.Stdout.Fd())),
|
||||
ContextOpts: &ContextOpts,
|
||||
Ui: Ui,
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user