msvc dist extended: rust-analyzer is optional
The windows tarballs and installers expect rust-analyzer to be present, but it's not always the case. For example, in try builds.
This commit is contained in:
parent
8a4a6f79dd
commit
a158053e35
@ -1601,8 +1601,7 @@ fn filter(contents: &str, marker: &str) -> String {
|
||||
prepare("cargo");
|
||||
prepare("rust-analysis");
|
||||
prepare("rust-std");
|
||||
prepare("rust-analyzer");
|
||||
for tool in &["clippy", "rust-docs", "rust-demangler", "miri"] {
|
||||
for tool in &["clippy", "rust-analyzer", "rust-docs", "rust-demangler", "miri"] {
|
||||
if built_tools.contains(tool) {
|
||||
prepare(tool);
|
||||
}
|
||||
@ -1688,6 +1687,7 @@ fn filter(contents: &str, marker: &str) -> String {
|
||||
.arg("-out")
|
||||
.arg(exe.join("StdGroup.wxs")),
|
||||
);
|
||||
if built_tools.contains("rust-analyzer") {
|
||||
builder.run(
|
||||
Command::new(&heat)
|
||||
.current_dir(&exe)
|
||||
@ -1705,6 +1705,7 @@ fn filter(contents: &str, marker: &str) -> String {
|
||||
.arg("-t")
|
||||
.arg(etc.join("msi/remove-duplicates.xsl")),
|
||||
);
|
||||
}
|
||||
if built_tools.contains("clippy") {
|
||||
builder.run(
|
||||
Command::new(&heat)
|
||||
|
Loading…
Reference in New Issue
Block a user