function name cleanups
This commit is contained in:
parent
73756cf5fa
commit
2d22e4132d
4
init.go
4
init.go
|
@ -24,7 +24,7 @@ func Init(f *forgepb.Forge, g *gui.Node) *RepoList {
|
||||||
repos := me.forge.Repos.SortByGoPath()
|
repos := me.forge.Repos.SortByGoPath()
|
||||||
for repos.Scan() {
|
for repos.Scan() {
|
||||||
repo := repos.Next()
|
repo := repos.Next()
|
||||||
if me.forge.IsReadOnly(repo) {
|
if me.forge.Config.IsReadOnly(repo.GoPath) {
|
||||||
log.Info("repo scan readonly directory:", repo.FullPath)
|
log.Info("repo scan readonly directory:", repo.FullPath)
|
||||||
} else {
|
} else {
|
||||||
log.Info("repo scan writable directory:", repo.FullPath)
|
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()
|
repos := me.forge.Repos.SortByGoPath()
|
||||||
for repos.Scan() {
|
for repos.Scan() {
|
||||||
repo := repos.Next()
|
repo := repos.Next()
|
||||||
if me.forge.IsReadOnly(repo) {
|
if me.forge.Config.IsReadOnly(repo.GoPath) {
|
||||||
log.Info("repo scan readonly directory:", repo.FullPath)
|
log.Info("repo scan readonly directory:", repo.FullPath)
|
||||||
} else {
|
} else {
|
||||||
log.Info("repo scan writable directory:", repo.FullPath)
|
log.Info("repo scan writable directory:", repo.FullPath)
|
||||||
|
|
Loading…
Reference in New Issue