diff options
| author | Jeff Carr <[email protected]> | 2024-02-18 15:09:04 -0600 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2024-02-18 15:09:04 -0600 |
| commit | 08c7765cc70bae20479ad0aa1897b6a4cfc3613a (patch) | |
| tree | dacc65539b521cd3fc285579712bd2ef7bd8a486 /whitelist.go | |
| parent | bbc78159fe11c78ae33cc8026887f62888003630 (diff) | |
guireleaser builds again
Diffstat (limited to 'whitelist.go')
| -rw-r--r-- | whitelist.go | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/whitelist.go b/whitelist.go index 08b1b03..665c7ef 100644 --- a/whitelist.go +++ b/whitelist.go @@ -3,13 +3,15 @@ package main import ( "strings" + + "go.wit.com/lib/gui/repolist" ) func initWhitelist() { - release.whitelist = make(map[string]*repo) - for _, repo := range me.allrepos { - if strings.HasPrefix(repo.String(), "go.wit.com/dev/davecgh") { - release.whitelist[repo.String()] = repo + release.whitelist = make(map[string]*repolist.Repo) + for _, repo := range me.repos.View.AllRepos() { + if strings.HasPrefix(repo.GoPath(), "go.wit.com/dev/davecgh") { + release.whitelist[repo.GoPath()] = repo } // if repo.String() == "go.wit.com/apps/guireleaser" { // release.whitelist[repo.String()] = repo |
