diff options
| author | Jeff Carr <[email protected]> | 2025-01-12 20:05:57 -0600 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2025-01-12 20:05:57 -0600 |
| commit | 4aa85a2f0f2e90e4df4cbf37857b800bb098c895 (patch) | |
| tree | 22d4764aaa11f2555274e1f20ccbec2a1ca07ffd /config.go | |
| parent | 7df10fba519944c1dae55625b10b0677b639febb (diff) | |
fixes for new autogenpb
Diffstat (limited to 'config.go')
| -rw-r--r-- | config.go | 6 |
1 files changed, 1 insertions, 5 deletions
@@ -62,11 +62,7 @@ func (all *Repos) ConfigLoad() error { func (all *Repos) sampleConfig() { newr := new(Repo) newr.FullPath = "/opt/forge/dummyentry" - if all.Append(newr) { - log.Info("added", newr.GetGoPath(), "ok") - } else { - log.Info("added", newr.GetGoPath(), "failed") - } + all.Append(newr) } func loadFile(fullname string) ([]byte, error) { |
