We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 133aefc commit 0f2a65aCopy full SHA for 0f2a65a
src/bootstrap/dist.rs
@@ -1081,8 +1081,14 @@ impl Step for Rls {
1081
.arg("--output-dir").arg(&distdir(build))
1082
.arg("--non-installed-overlay").arg(&overlay)
1083
.arg(format!("--package-name={}-{}", name, target))
1084
- .arg("--component-name=rls")
1085
.arg("--legacy-manifest-dirs=rustlib,cargo");
+
1086
+ if build.config.channel == "nightly" {
1087
+ cmd.arg("--component-name=rls");
1088
+ } else {
1089
+ cmd.arg("--component-name=rls-preview");
1090
+ }
1091
1092
build.run(&mut cmd);
1093
distdir(build).join(format!("{}-{}.tar.gz", name, target))
1094
}
0 commit comments