Explorar o código

Don't capture stdout during 'repo checkout'

There isn't any great value in buffering stdout into memory
coming from git checkout.  So don't bother doing it.

Signed-off-by: Shawn O. Pearce <sop@google.com>
Shawn O. Pearce %!s(int64=17) %!d(string=hai) anos
pai
achega
2675c3f8b5
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  1. 1 1
      project.py

+ 1 - 1
project.py

@@ -771,7 +771,7 @@ class Project(object):
 
     # Do the checkout
     cmd = ['checkout', name, '--']
-    return GitCommand(self, cmd, capture_stdout=True).Wait() == 0
+    return GitCommand(self, cmd).Wait() == 0
 
   def AbandonBranch(self, name):
     """Destroy a local topic branch.