diff options
author | bors[bot] <26634292+bors[bot]@users.noreply.github.com> | 2021-01-26 19:14:16 +0000 |
---|---|---|
committer | GitHub <[email protected]> | 2021-01-26 19:14:16 +0000 |
commit | 8775bc4be18fac9c7935c1edeacf048c515e7518 (patch) | |
tree | 3371f60836fdab03f218793582d428ef7751fe55 /xtask/src | |
parent | 2664aee8e5976f590e2fcb700982488ae2358780 (diff) | |
parent | d35bda6429b0a3a758ddcd899e954043584f1071 (diff) |
Merge #7455
7455: Make always-assert crate reusable r=matklad a=matklad
bors r+
🤖
Co-authored-by: Aleksey Kladov <[email protected]>
Diffstat (limited to 'xtask/src')
-rw-r--r-- | xtask/src/install.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/xtask/src/install.rs b/xtask/src/install.rs index 202c74426..81b9956b8 100644 --- a/xtask/src/install.rs +++ b/xtask/src/install.rs | |||
@@ -180,7 +180,7 @@ fn install_server(opts: ServerOpt) -> Result<()> { | |||
180 | Malloc::Jemalloc => &["--features", "jemalloc"], | 180 | Malloc::Jemalloc => &["--features", "jemalloc"], |
181 | }; | 181 | }; |
182 | 182 | ||
183 | let cmd = cmd!("cargo install --path crates/rust-analyzer --locked --force {features...}"); | 183 | let cmd = cmd!("cargo install --path crates/rust-analyzer --locked --force --features force-always-assert {features...}"); |
184 | let res = cmd.run(); | 184 | let res = cmd.run(); |
185 | 185 | ||
186 | if res.is_err() && old_rust { | 186 | if res.is_err() && old_rust { |