diff options
Diffstat (limited to 'rill.go')
| -rw-r--r-- | rill.go | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -79,7 +79,7 @@ func (f *Forge) RillReload() int { var all []*gitpb.Repo for repo := range f.Repos.IterAll() { if !repo.IsValidDir() { - log.Printf("%s %-50s\n", "got an invalid repo in forgepb.RillReload()", repo.GetGoPath()) + log.Printf("%s %-50s\n", "got an invalid repo in forgepb.RillReload()", repo.GetFullPath()) continue } all = append(all, repo) @@ -141,7 +141,7 @@ func (f *Forge) RillRepos(rillf func(*gitpb.Repo) error) map[string]*RillStats { for repo := range f.Repos.IterAll() { if !repo.IsValidDir() { - log.Printf("got an invalid repo in forgepb.RillRepos() %-50s\n", repo.GetGoPath()) + log.Printf("got an invalid repo in forgepb.RillRepos() %-50s\n", repo.GetFullPath()) continue } all = append(all, repo) |
