From b79731472d70867f9e73cdeeb0917bc287170ee6 Mon Sep 17 00:00:00 2001 From: Jeff Carr Date: Tue, 21 Oct 2025 06:50:52 -0500 Subject: changed to ENV --- doBuild.go | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'doBuild.go') 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"} } -- cgit v1.2.3