aboutsummaryrefslogtreecommitdiff
path: root/xtask/src/install.rs
diff options
context:
space:
mode:
Diffstat (limited to 'xtask/src/install.rs')
-rw-r--r--xtask/src/install.rs2
1 files changed, 0 insertions, 2 deletions
diff --git a/xtask/src/install.rs b/xtask/src/install.rs
index a0dc0c9c2..b25a6e301 100644
--- a/xtask/src/install.rs
+++ b/xtask/src/install.rs
@@ -24,7 +24,6 @@ pub struct ServerOpt {
24 24
25pub enum Malloc { 25pub enum Malloc {
26 System, 26 System,
27 Jemalloc,
28 Mimalloc, 27 Mimalloc,
29} 28}
30 29
@@ -138,7 +137,6 @@ fn install_server(opts: ServerOpt) -> Result<()> {
138 137
139 let malloc_feature = match opts.malloc { 138 let malloc_feature = match opts.malloc {
140 Malloc::System => "", 139 Malloc::System => "",
141 Malloc::Jemalloc => "--features jemalloc",
142 Malloc::Mimalloc => "--features mimalloc", 140 Malloc::Mimalloc => "--features mimalloc",
143 }; 141 };
144 let res = run!("cargo install --path crates/rust-analyzer --locked --force {}", malloc_feature); 142 let res = run!("cargo install --path crates/rust-analyzer --locked --force {}", malloc_feature);