summaryrefslogtreecommitdiff
path: root/init.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2024-12-17 21:14:39 -0600
committerJeff Carr <[email protected]>2024-12-17 21:14:39 -0600
commitc4f9430e4633aa13b993a9ac6102dcdbcc5eb9c2 (patch)
treed0eb52656ee14e214322ace2d4bd766ff3b155b4 /init.go
parent7cdb2bf6a0c88ac860b03a547918bb6d85e6fdb6 (diff)
keep trying to fix init() and update()
Diffstat (limited to 'init.go')
-rw-r--r--init.go10
1 files changed, 0 insertions, 10 deletions
diff --git a/init.go b/init.go
index 78b3ae5..29f7af5 100644
--- a/init.go
+++ b/init.go
@@ -35,7 +35,6 @@ func Init() *Forge {
}
f.rillUpdate(20, 10)
- // f.updateAll()
if f.configSave {
f.ConfigSave()
@@ -45,15 +44,6 @@ func Init() *Forge {
return f
}
-func (f *Forge) updateAll() {
- all := f.Repos.SortByFullPath()
- for all.Scan() {
- repo := all.Next()
-
- f.updateRepo(repo)
- }
-}
-
// only init's the protobuf. intended to not scan or change anything
func InitPB() *Forge {
f := new(Forge)