From 17d085b13a1b048f20e4ed5ff32d5ee777dfc4ee Mon Sep 17 00:00:00 2001 From: Mitchell Hashimoto Date: Sat, 26 Jul 2014 14:07:47 -0700 Subject: [PATCH] Always enable color for now --- commands.go | 4 ---- 1 file changed, 4 deletions(-) diff --git a/commands.go b/commands.go index c57757f618..870ca39d1e 100644 --- a/commands.go +++ b/commands.go @@ -3,9 +3,7 @@ package main import ( "os" "os/signal" - "runtime" - "code.google.com/p/go.crypto/ssh/terminal" "github.com/hashicorp/terraform/command" "github.com/mitchellh/cli" ) @@ -29,8 +27,6 @@ func init() { } meta := command.Meta{ - Color: runtime.GOOS == "windows" || - terminal.IsTerminal(int(os.Stdout.Fd())), ContextOpts: &ContextOpts, Ui: Ui, }