diff options
Diffstat (limited to 'rill.go')
| -rw-r--r-- | rill.go | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -23,7 +23,7 @@ func (repo *Repo) GitPull() cmd.Status { var result cmd.Status result.Exit = 21 result.Error = ErrorGitPullOnLocal - // log.Info("git pull skipped on local only branch", repo.GoPath) + // log.Info("git pull skipped on local only branch", repo.GetGoPath()) return result } var cmd []string @@ -87,7 +87,7 @@ func (all *Repos) RillGitPull(part1 int, part2 int) map[*Repo]cmd.Status { */ var result cmd.Status result = repo.GitPull() - log.Info("git pull", strings.Join(result.Stdout, " "), repo.GoPath) + log.Info("git pull", strings.Join(result.Stdout, " "), repo.GetGoPath()) lock.Lock() defer lock.Unlock() allerr[repo] = result |
