Chromium Code Reviews| Index: build/download_sdk_extras.py |
| diff --git a/build/download_sdk_extras.py b/build/download_sdk_extras.py |
| index d38ee8651de5833924ea402c599ed80b10947583..29d211b93485b30046b3720895c51dd6808640e3 100755 |
| --- a/build/download_sdk_extras.py |
| +++ b/build/download_sdk_extras.py |
| @@ -48,8 +48,12 @@ def main(): |
| local_zip = '%s/%s' % (SDK_EXTRAS_PATH, package['zip']) |
| if not os.path.exists(local_zip): |
| package_zip = '%s/%s' % (SDK_EXTRAS_BUCKET, package['zip']) |
| - subprocess.check_call([GSUTIL_PATH, '--force-version', '4.7', 'cp', |
| - package_zip, local_zip]) |
| + try: |
| + subprocess.check_call(['python', GSUTIL_PATH, '--force-version', '4.7', |
|
hinoka
2015/02/18 21:33:07
s/'python'/sys.executable/
navabi
2015/02/18 22:47:03
I don't think this works on windows. I would expec
|
| + 'cp', package_zip, local_zip]) |
| + except AccessDeniedException: |
| + print ('WARNING: Bot does not have permission to download SDK packages.' |
| + ' If this bot compiles for Android, it may have errors.') |
|
hshi1
2015/02/18 21:32:27
why is android_sdk_extras among the packages in th
navabi
2015/02/18 22:47:03
If possible, we should only call download_sdk_pack
Sam Clegg
2015/02/19 01:24:30
There are other scripts that do this by inspecting
|
| # Always clean dir and extract zip to ensure correct contents. |
| clean_and_extract(package['dir_name'], package['package'], package['zip']) |