From 052a8b500af3afb0259bae2b04557facdf062a2e Mon Sep 17 00:00:00 2001 From: Simon Sapin Date: Tue, 12 Sep 2017 11:07:26 +0200 Subject: [PATCH] =?UTF-8?q?'./mach=20rustup':=20Use=20alternate=20S3=20URL?= =?UTF-8?q?=20that=20doesn=E2=80=99t=20require=20SNI?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit … to hopefully fix https://travis-ci.org/servo/servo-with-rust-nightly/ builds. --- python/servo/devenv_commands.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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: