Skip to content

Commit af8c1e3

Browse files
committed
fix error message for download-ci-llvm
1 parent 083721a commit af8c1e3

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

src/bootstrap/native.rs

+7-7
Original file line numberDiff line numberDiff line change
@@ -179,13 +179,13 @@ fn download_ci_llvm(builder: &Builder<'_>, llvm_sha: &str) {
179179
let filename = format!("rust-dev-nightly-{}.tar.xz", builder.build.build.triple);
180180
let tarball = rustc_cache.join(&filename);
181181
if !tarball.exists() {
182-
let help_on_error = "error: failed to download llvm from ci\n
183-
\nhelp: old builds get deleted after a certain time
184-
\nhelp: if trying to compile an old commit of rustc, disable `download-ci-llvm` in config.toml:
185-
\n
186-
\n[llvm]
187-
\ndownload-ci-llvm = false
188-
\n
182+
let help_on_error = "error: failed to download llvm from ci
183+
184+
help: old builds get deleted after a certain time
185+
help: if trying to compile an old commit of rustc, disable `download-ci-llvm` in config.toml:
186+
187+
[llvm]
188+
download-ci-llvm = false
189189
";
190190
builder.download_component(base, &format!("{}/{}", url, filename), &tarball, help_on_error);
191191
}

0 commit comments

Comments
 (0)