Make gold plugin download more robust.

BUG=chromium:515782
LOG=n

Review URL: https://codereview.chromium.org/1321943004

Cr-Commit-Position: refs/heads/master@{#30583}
This commit is contained in:
machenbach 2015-09-04 01:52:12 -07:00 committed by Commit bot
parent 3dc9b122fa
commit d9fd711a61

View File

@ -57,6 +57,10 @@ def main():
print 'Skipping gold plugin download. File present and clang up to date.'
return 0
# Make sure this works on empty checkouts (i.e. clang not downloaded yet).
if not os.path.exists(LLVM_BUILD_PATH):
os.makedirs(LLVM_BUILD_PATH)
targz_name = 'llvmgold-%s.tgz' % CLANG_REVISION
remote_path = '%s/%s' % (CLANG_BUCKET, targz_name)