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