From c2bc22d69dcfc9dcc9c3d82b6a9d807df206b06d Mon Sep 17 00:00:00 2001 From: "hinoka@chromium.org" Date: Thu, 5 Jun 2014 21:19:38 +0000 Subject: [PATCH] Fixed bad arguments to gsutil boto is required. BUG=261741 TBR=iannucci Review URL: https://codereview.chromium.org/315343002 git-svn-id: svn://svn.chromium.org/chrome/trunk/tools/depot_tools@275244 0039d316-1c4b-4281-b951-d872f2087c98 --- git_cache.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/git_cache.py b/git_cache.py index 255ed3a9b..a55f48ff8 100755 --- a/git_cache.py +++ b/git_cache.py @@ -252,7 +252,7 @@ class Mirror(object): python_fallback = True gs_folder = 'gs://%s/%s' % (self.bootstrap_bucket, self.basedir) - gsutil = Gsutil(self.gsutil_exe, bypass_prodaccess=True) + gsutil = Gsutil(self.gsutil_exe, boto_path=None, bypass_prodaccess=True) # Get the most recent version of the zipfile. _, ls_out, _ = gsutil.check_call('ls', gs_folder) ls_out_sorted = sorted(ls_out.splitlines())