summaryrefslogtreecommitdiff
path: root/doPull.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2025-02-15 17:07:07 -0600
committerJeff Carr <[email protected]>2025-02-15 17:07:07 -0600
commit620569a97ca76be1f27c2394a044f0a250f3eb3b (patch)
treedae9fc823958265f9a5152a4dbcc42f12a4eeb59 /doPull.go
parentec0fe277f676fc1f0234aec6e2db6caf7e965d3f (diff)
remote lots of cruft
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 edf3adf..000728a 100644
--- a/doPull.go
+++ b/doPull.go
@@ -44,14 +44,14 @@ func rillPull(repo *gitpb.Repo) error {
func doGitPullNew() {
now := time.Now()
- me.forge.RillFuncError(rillPull)
+ pullcount := 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)\n", total, count, nope, shell.FormatDuration(time.Since(now)))
+ 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)
}
/*