summaryrefslogtreecommitdiff
path: root/doBuild.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2025-10-21 06:50:52 -0500
committerJeff Carr <[email protected]>2025-10-21 06:50:52 -0500
commitb79731472d70867f9e73cdeeb0917bc287170ee6 (patch)
treebff33832f693dbd6795feac322ea895820333493 /doBuild.go
parent46aae682f88cd9171e81d536d85436c2b6cfc469 (diff)
changed to ENV
Diffstat (limited to 'doBuild.go')
-rw-r--r--doBuild.go5
1 files changed, 3 insertions, 2 deletions
diff --git a/doBuild.go b/doBuild.go
index 3879efb..4575512 100644
--- a/doBuild.go
+++ b/doBuild.go
@@ -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"}
}