summaryrefslogtreecommitdiff
path: root/rill.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2025-01-17 06:04:36 -0600
committerJeff Carr <[email protected]>2025-01-17 06:04:36 -0600
commita477ea8f8fe7a4b8394ad3f5dc59e25106aa39ae (patch)
tree3587ed0d0628beec5cfa0ebc4a7a7116c80a174e /rill.go
parentbd925757dfc497eda01b9ccbf1d60fa88c75df99 (diff)
fix git pull outputv0.0.53
Diffstat (limited to 'rill.go')
-rw-r--r--rill.go3
1 files changed, 2 insertions, 1 deletions
diff --git a/rill.go b/rill.go
index d6dc2a1..08ba136 100644
--- a/rill.go
+++ b/rill.go
@@ -87,7 +87,8 @@ 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.GetGoPath())
+ log.Info("git pull", repo.GetGoPath())
+ log.Info(strings.Join(result.Stdout, "\n"))
lock.Lock()
defer lock.Unlock()
allerr[repo] = result