summaryrefslogtreecommitdiff
path: root/doListRepos.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2025-10-05 06:12:15 -0500
committerJeff Carr <[email protected]>2025-10-05 06:12:15 -0500
commit0d660048bdab42c9ed279181b89b9f55a6cd49da (patch)
treeec2307e5a7a8eafe996b270f5b30a254749218cc /doListRepos.go
parent4fcacb21d72ee64c36a46831ba316f36b84fb43c (diff)
s/gopath/namespace/v0.1.15
Diffstat (limited to 'doListRepos.go')
-rw-r--r--doListRepos.go8
1 files changed, 4 insertions, 4 deletions
diff --git a/doListRepos.go b/doListRepos.go
index 9d91375..d716fbc 100644
--- a/doListRepos.go
+++ b/doListRepos.go
@@ -18,11 +18,11 @@ func doListRepos() {
if repotype == "binary" || repotype == "plugin" {
// we only want to process things that can be compiled with 'go build'
} else {
- // log.Info("skipping repo", check.GetGoPath(), repotype)
+ // log.Info("skipping repo", check.Namespace, repotype)
continue
}
- if me.forge.Config.IsReadOnly(check.GetGoPath()) {
+ if me.forge.Config.IsReadOnly(check.Namespace) {
// ignore read only stuff
continue
}
@@ -36,7 +36,7 @@ func doListRepos() {
manufactured := check.GetCurrentVersion()
ver := trimNonNumericFromStart(manufactured)
- name := me.forge.Config.DebName(check.GetGoPath())
+ name := me.forge.Config.DebName(check.Namespace)
var realver string
if installedPackage := me.machine.FindInstalledByName(name); installedPackage != nil {
realver = installedPackage.Version
@@ -85,7 +85,7 @@ func doListRepos() {
log.Info(start, end)
if name == "" {
// err := fmt.Sprintf("name is blank error %+v", repo)
- log.Warn("name is blank error", check.GetGoPath())
+ log.Warn("name is blank error", check.Namespace)
}
}
}