summaryrefslogtreecommitdiff
path: root/doPull.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2025-08-31 15:54:19 -0500
committerJeff Carr <[email protected]>2025-08-31 15:54:19 -0500
commit6d249abb44414cea57f496e24a682466a7772f87 (patch)
tree8c8a8996782ae47c29e0d5556add0ebc1faf344d /doPull.go
parentf754a93493e6a12c1d60dec9b71be841b9aaa2b6 (diff)
standard rill() with statsv0.22.135v0.22.134
Diffstat (limited to 'doPull.go')
-rw-r--r--doPull.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/doPull.go b/doPull.go
index d174d24..c3c0870 100644
--- a/doPull.go
+++ b/doPull.go
@@ -50,14 +50,14 @@ func doGitPullNew() error {
if argv.Force {
now := time.Now()
- pullcount := me.forge.RillFuncError(rillPull)
+ stats := me.forge.RillFuncError(rillPull)
count := me.forge.RillReload()
if count != 0 {
me.forge.ConfigSave()
}
total, count, nope, _ := IsEverythingOnMaster()
- log.Printf("Master branch check. %d total repos. (%d git pulled) (%d not on master branch) (%s) git pull total=%d\n", total, count, nope, shell.FormatDuration(time.Since(now)), pullcount)
+ log.Printf("Master branch check. %d total repos. (%d git pulled) (%d not on master branch) (%s) git pull total=FIXME%d\n", total, count, nope, shell.FormatDuration(time.Since(now)), len(stats))
return nil
}