summaryrefslogtreecommitdiff
path: root/rill.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2024-12-17 06:37:14 -0600
committerJeff Carr <[email protected]>2024-12-17 06:37:14 -0600
commit233f7bca767aab9df55adea409e9820050631586 (patch)
tree1ce61760e8b31077b9accc9b1da978d935a132d3 /rill.go
parent4bc95ad2684cb42159229b8198aa8a2377f80aa1 (diff)
lots of changes to isolate exec 'git'
Diffstat (limited to 'rill.go')
-rw-r--r--rill.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/rill.go b/rill.go
index 7b4bb87..78c1de0 100644
--- a/rill.go
+++ b/rill.go
@@ -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