Skip to content

Commit

Permalink
Use HTTPS in LLVM URLs
Browse files Browse the repository at this point in the history
  • Loading branch information
micbou committed Aug 27, 2018
1 parent f4eb1bf commit 14340b7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions package_llvm.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@

CHUNK_SIZE = 1024 * 1024 # 1MB

LLVM_RELEASE_URL = 'http://releases.llvm.org/{version}'
LLVM_RELEASE_URL = 'https://releases.llvm.org/{version}'
LLVM_PRERELEASE_URL = (
'http://prereleases.llvm.org/{version}/rc{release_candidate}' )
'https://prereleases.llvm.org/{version}/rc{release_candidate}' )
LLVM_SOURCE = 'llvm-{version}.src'
CLANG_SOURCE = 'cfe-{version}.src'
BUNDLE_NAME = 'clang+llvm-{version}-{target}'
Expand Down

0 comments on commit 14340b7

Please sign in to comment.