@@ -171,7 +171,7 @@ def download_stage0(self):
171
171
if os .path .exists (self .bin_root ()):
172
172
shutil .rmtree (self .bin_root ())
173
173
filename = "rust-std-{}-{}.tar.gz" .format (channel , self .build )
174
- url = "https://dev- static.rust-lang.org/dist/" + self .stage0_rustc_date ()
174
+ url = "https://static.rust-lang.org/dist/" + self .stage0_rustc_date ()
175
175
tarball = os .path .join (rustc_cache , filename )
176
176
if not os .path .exists (tarball ):
177
177
get ("{}/{}" .format (url , filename ), tarball , verbose = self .verbose )
@@ -180,7 +180,7 @@ def download_stage0(self):
180
180
verbose = self .verbose )
181
181
182
182
filename = "rustc-{}-{}.tar.gz" .format (channel , self .build )
183
- url = "https://dev- static.rust-lang.org/dist/" + self .stage0_rustc_date ()
183
+ url = "https://static.rust-lang.org/dist/" + self .stage0_rustc_date ()
184
184
tarball = os .path .join (rustc_cache , filename )
185
185
if not os .path .exists (tarball ):
186
186
get ("{}/{}" .format (url , filename ), tarball , verbose = self .verbose )
@@ -192,7 +192,7 @@ def download_stage0(self):
192
192
193
193
if "pc-windows-gnu" in self .build :
194
194
filename = "rust-mingw-{}-{}.tar.gz" .format (channel , self .build )
195
- url = "https://dev- static.rust-lang.org/dist/" + self .stage0_rustc_date ()
195
+ url = "https://static.rust-lang.org/dist/" + self .stage0_rustc_date ()
196
196
tarball = os .path .join (rustc_cache , filename )
197
197
if not os .path .exists (tarball ):
198
198
get ("{}/{}" .format (url , filename ), tarball , verbose = self .verbose )
@@ -202,7 +202,7 @@ def download_stage0(self):
202
202
(not os .path .exists (self .cargo ()) or self .cargo_out_of_date ()):
203
203
self .print_what_it_means_to_bootstrap ()
204
204
filename = "cargo-{}-{}.tar.gz" .format ('0.18.0' , self .build )
205
- url = "https://dev- static.rust-lang.org/dist/" + self .stage0_rustc_date ()
205
+ url = "https://static.rust-lang.org/dist/" + self .stage0_rustc_date ()
206
206
tarball = os .path .join (rustc_cache , filename )
207
207
if not os .path .exists (tarball ):
208
208
get ("{}/{}" .format (url , filename ), tarball , verbose = self .verbose )
0 commit comments