summaryrefslogtreecommitdiff
path: root/getKeyFromPackaagePB.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2025-10-24 18:31:43 -0500
committerJeff Carr <[email protected]>2025-10-24 18:31:43 -0500
commit8a42142f30cd186b57b94fb6c012af5315b0dfd1 (patch)
tree75c28ee5a4a050e3efa80e125d5f80d93216ea42 /getKeyFromPackaagePB.go
parentd776ba4792acd16bd88aaba6ac2920ad1911b4d7 (diff)
s/ENV/env/ but ENV really is better herev0.0.19
Diffstat (limited to 'getKeyFromPackaagePB.go')
-rw-r--r--getKeyFromPackaagePB.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/getKeyFromPackaagePB.go b/getKeyFromPackaagePB.go
index bf935df..68443c3 100644
--- a/getKeyFromPackaagePB.go
+++ b/getKeyFromPackaagePB.go
@@ -3,8 +3,8 @@ package debian
import (
"strings"
- "go.wit.com/lib/ENV"
"go.wit.com/lib/cobol"
+ "go.wit.com/lib/env"
"go.wit.com/lib/protobuf/zoopb"
"go.wit.com/log"
)
@@ -24,7 +24,7 @@ func GetKeyFromPackagePB(p *zoopb.Package, varname string) (string, string) {
return "Maintainer", p.DebInfo.Maintainer
// return "Maintainer", p.Author
case "Source":
- if ENV.Verbose() {
+ if env.Verbose() {
log.Info("skipping from controlfile", varname)
// return "Source", p.DebInfo.Source
}