summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--project.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/project.py b/project.py
index 8b02b7c5..5f478993 100644
--- a/project.py
+++ b/project.py
@@ -1877,6 +1877,7 @@ class Project(object):
1877 gitcmd = GitCommand(self, cmd, bare=True, capture_stderr=True, 1877 gitcmd = GitCommand(self, cmd, bare=True, capture_stderr=True,
1878 ssh_proxy=ssh_proxy) 1878 ssh_proxy=ssh_proxy)
1879 ret = gitcmd.Wait() 1879 ret = gitcmd.Wait()
1880 print(gitcmd.stderr, file=sys.stderr, end='')
1880 if ret == 0: 1881 if ret == 0:
1881 ok = True 1882 ok = True
1882 break 1883 break
@@ -1886,8 +1887,9 @@ class Project(object):
1886 "git remote prune" in gitcmd.stderr): 1887 "git remote prune" in gitcmd.stderr):
1887 prunecmd = GitCommand(self, ['remote', 'prune', name], bare=True, 1888 prunecmd = GitCommand(self, ['remote', 'prune', name], bare=True,
1888 capture_stderr=True, ssh_proxy=ssh_proxy) 1889 capture_stderr=True, ssh_proxy=ssh_proxy)
1889 if prunecmd.Wait(): 1890 ret = prunecmd.Wait()
1890 print(prunecmd.stderr, file=sys.stderr) 1891 print(prunecmd.stderr, file=sys.stderr, end='')
1892 if ret:
1891 break 1893 break
1892 continue 1894 continue
1893 elif current_branch_only and is_sha1 and ret == 128: 1895 elif current_branch_only and is_sha1 and ret == 128: