summaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
authorOswald Buddenhagen <oswald.buddenhagen@gmx.de>2020-04-08 12:17:53 +0200
committerOswald Buddenhagen <oswald.buddenhagen@gmx.de>2020-04-20 15:09:40 +0000
commitd9f2c9de560d2671670df2b99fd0281a558a1ca1 (patch)
treed89f91b9bdaf9777aa7a41b59737671206c707cc /bin
parentecb869a1ed4cf30f25e9e5269000db0e0cdd2553 (diff)
downloadqtrepotools-d9f2c9de560d2671670df2b99fd0281a558a1ca1.tar.gz
gpull: forward output from git-ggc
otherwise it may silently fail. amends 7fc65858. Change-Id: Idd44d4945ed9e9ff810ff621ceceb3094205bfed Reviewed-by: Alexandru Croitor <alexandru.croitor@qt.io> Reviewed-by: Oswald Buddenhagen <oswald.buddenhagen@gmx.de>
Diffstat (limited to 'bin')
-rwxr-xr-xbin/git-gpull2
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/git-gpull b/bin/git-gpull
index 9b51291..3222cd3 100755
--- a/bin/git-gpull
+++ b/bin/git-gpull
@@ -78,7 +78,7 @@ if ($gc_interval != 0) {
# to use gpull instead of rebase with --continue is suboptimal).
# In the big picture the delay doesn't matter, as the gc interval
# is likely much bigger than the pull frequency anyway.
- run_process(DRY_RUN, $script_path."/git-ggc");
+ run_process(FWD_OUTPUT | DRY_RUN, $script_path."/git-ggc");
} else {
printf("Next gc date %d not reached yet (now is %d).\n", $next_gc, time())
if ($debug);