Unnamed repository; edit this file 'description' to name the repository.
Disable unstable APIs for nightly releases
Laurențiu Nicola 2021-12-22
parent c086718 · commit c9175dc
-rw-r--r--xtask/src/dist.rs4
1 files changed, 1 insertions, 3 deletions
diff --git a/xtask/src/dist.rs b/xtask/src/dist.rs
index 6e0902c7a0..c05b0de676 100644
--- a/xtask/src/dist.rs
+++ b/xtask/src/dist.rs
@@ -63,9 +63,7 @@ fn dist_client(version: &str, release_tag: &str, target: &Target) -> Result<()>
r#""displayName": "rust-analyzer (nightly)""#,
);
}
- if !nightly {
- patch.replace(r#""enableProposedApi": true,"#, r#""#);
- }
+ patch.replace(r#""enableProposedApi": true,"#, r#""#);
patch.commit()?;
Ok(())