summaryrefslogtreecommitdiff
path: root/init.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2024-11-30 15:07:27 -0600
committerJeff Carr <[email protected]>2024-11-30 15:07:27 -0600
commitfb792e13a7acdeafcacb2d37139bf5653b16921a (patch)
tree413fa04b79e99fedc103423101a524ab0f762e7f /init.go
parentb00584213dbb59b4694c2b353fd1271465b9f2cf (diff)
autogenpb improvementsv0.22.19
Diffstat (limited to 'init.go')
-rw-r--r--init.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/init.go b/init.go
index f1cc9fa..9a22624 100644
--- a/init.go
+++ b/init.go
@@ -21,7 +21,7 @@ func Init(f *forgepb.Forge, g *gui.Node) *RepoList {
me.viewName = "autotypist"
- repos := me.forge.Repos.SortByPath()
+ repos := me.forge.Repos.SortByGoPath()
for repos.Scan() {
repo := repos.Next()
if me.forge.IsReadOnly(repo.GoPath) {
@@ -47,7 +47,7 @@ func InitBox(f *forgepb.Forge, newbox *gui.Node) *RepoList {
me.viewName = "autotypist"
- repos := me.forge.Repos.SortByPath()
+ repos := me.forge.Repos.SortByGoPath()
for repos.Scan() {
repo := repos.Next()
if me.forge.IsReadOnly(repo.GoPath) {