summaryrefslogtreecommitdiff
path: root/init.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2025-11-02 08:58:56 -0600
committerJeff Carr <[email protected]>2025-11-02 08:58:56 -0600
commitab7db21e07faac62f1abfb2b33634586979a0ded (patch)
tree19a58f865c31be555f75b00cd213796ca542a4ee /init.go
parent6fa3221e265933038342acb50caad3c2bbb6c136 (diff)
new gitpb/repo.protodevel
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 26daa49..90bb402 100644
--- a/init.go
+++ b/init.go
@@ -142,14 +142,14 @@ func (f *Forge) postInit() error {
}
} else {
log.Printf("forge failed to load %s file with len(%d) repos err=(%v)\n", f.Repos.Filename, f.Repos.Len(), err)
- panic("failed to load repos.pb")
+ panic("failed to load .pb cache")
}
err = f.patchesCacheLoad() // loads the file from ~/.cache/forge/patches.pb
if err == nil {
// log.Printf("forge loaded %s file with len(%d) repos\n", f.Repos.Filename, f.Repos.Len())
} else {
log.Printf("forge failed to load %s file with len(%d) patches err=(%v)\n", f.Patches.Filename, f.Patches.Len(), err)
- panic("failed to load repos.pb")
+ panic("failed to load .pb cache")
}
return err
}