diff options
| author | Jeff Carr <[email protected]> | 2025-10-21 06:50:52 -0500 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2025-10-21 06:50:52 -0500 |
| commit | b79731472d70867f9e73cdeeb0917bc287170ee6 (patch) | |
| tree | bff33832f693dbd6795feac322ea895820333493 /doBuild.go | |
| parent | 46aae682f88cd9171e81d536d85436c2b6cfc469 (diff) | |
changed to ENV
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"} } |
