Have git_cache print out download progress when bootstrapping the git cache
BUG=261741,380958
Review URL: https://codereview.chromium.org/325903005
git-svn-id: svn://svn.chromium.org/chrome/trunk/tools/depot_tools@275872 0039d316-1c4b-4281-b951-d872f2087c98
diff --git a/git_cache.py b/git_cache.py
index a55f48f..086b479 100755
--- a/git_cache.py
+++ b/git_cache.py
@@ -265,9 +265,8 @@
try:
tempdir = tempfile.mkdtemp()
self.print('Downloading %s' % latest_checkout)
- code, out, err = gsutil.check_call('cp', latest_checkout, tempdir)
+ code = gsutil.call('cp', latest_checkout, tempdir)
if code:
- self.print('%s\n%s' % (out, err))
return False
filename = os.path.join(tempdir, latest_checkout.split('/')[-1])