diff options
Diffstat (limited to 'doBuild.go')
| -rw-r--r-- | doBuild.go | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -6,7 +6,7 @@ package main import ( "fmt" - "go.wit.com/lib/ENV" + "go.wit.com/lib/env" "go.wit.com/log" ) @@ -14,7 +14,7 @@ import ( // so don't delete them func doBuild() error { v := []string{} - if ENV.Verbose() { + if env.Verbose() { v = []string{"-v", "-x"} } @@ -33,7 +33,7 @@ func doBuild() error { func doInstall() error { v := []string{} - if ENV.Verbose() { + if env.Verbose() { v = []string{"-v", "-x"} } |
