diff options
| author | Jeff Carr <[email protected]> | 2024-12-17 06:37:14 -0600 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2024-12-17 06:37:14 -0600 |
| commit | 233f7bca767aab9df55adea409e9820050631586 (patch) | |
| tree | 1ce61760e8b31077b9accc9b1da978d935a132d3 /rill.go | |
| parent | 4bc95ad2684cb42159229b8198aa8a2377f80aa1 (diff) | |
lots of changes to isolate exec 'git'
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 |
