diff options
author | Simon Sapin <simon.sapin@exyr.org> | 2017-09-12 11:07:26 +0200 |
---|---|---|
committer | Simon Sapin <simon.sapin@exyr.org> | 2017-09-12 11:42:12 +0200 |
commit | 052a8b500af3afb0259bae2b04557facdf062a2e (patch) | |
tree | a496d71872518fb46293e190b9e7996836baacf2 /python/servo/devenv_commands.py | |
parent | f59bcc006451d7a71d8432ebebf6044001512d0e (diff) | |
download | servo-052a8b500af3afb0259bae2b04557facdf062a2e.tar.gz servo-052a8b500af3afb0259bae2b04557facdf062a2e.zip |
'./mach rustup': Use alternate S3 URL that doesn’t require SNI
… to hopefully fix https://travis-ci.org/servo/servo-with-rust-nightly/ builds.
Diffstat (limited to 'python/servo/devenv_commands.py')
-rw-r--r-- | python/servo/devenv_commands.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/python/servo/devenv_commands.py b/python/servo/devenv_commands.py index cbecb471c0d..804e7e1c425 100644 --- a/python/servo/devenv_commands.py +++ b/python/servo/devenv_commands.py @@ -262,7 +262,7 @@ class MachCommands(CommandBase): description='Update the Rust version to latest Nightly', category='devenv') def rustup(self): - url = "https://static.rust-lang.org/dist/channel-rust-nightly-date.txt" + url = "https://static-rust-lang-org.s3.amazonaws.com/dist/channel-rust-nightly-date.txt" nightly_date = urllib2.urlopen(url).read() filename = path.join(self.context.topdir, "rust-toolchain") with open(filename, "w") as f: |