diff options
| author | Jeff Carr <[email protected]> | 2024-12-04 15:36:28 -0600 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2024-12-04 15:36:28 -0600 |
| commit | 2d22e4132d9ef50527b1e8efa9951748ff78e189 (patch) | |
| tree | 244a2163a29520140c5107087b15e6f83817ddff /init.go | |
| parent | 73756cf5fa8d9853f06f94c49b3657aed6cdb947 (diff) | |
Diffstat (limited to 'init.go')
| -rw-r--r-- | init.go | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -24,7 +24,7 @@ func Init(f *forgepb.Forge, g *gui.Node) *RepoList { repos := me.forge.Repos.SortByGoPath() for repos.Scan() { repo := repos.Next() - if me.forge.IsReadOnly(repo) { + if me.forge.Config.IsReadOnly(repo.GoPath) { log.Info("repo scan readonly directory:", repo.FullPath) } else { log.Info("repo scan writable directory:", repo.FullPath) @@ -50,7 +50,7 @@ func InitBox(f *forgepb.Forge, newbox *gui.Node) *RepoList { repos := me.forge.Repos.SortByGoPath() for repos.Scan() { repo := repos.Next() - if me.forge.IsReadOnly(repo) { + if me.forge.Config.IsReadOnly(repo.GoPath) { log.Info("repo scan readonly directory:", repo.FullPath) } else { log.Info("repo scan writable directory:", repo.FullPath) |
