mirror of
https://github.com/rust-lang/rust-analyzer
synced 2025-01-12 13:18:47 +00:00
Fix regression where the client was not installed
This commit is contained in:
parent
16a76aa158
commit
97b1550dda
1 changed files with 1 additions and 1 deletions
|
@ -63,7 +63,7 @@ fn main() -> Result<()> {
|
||||||
let client_bin = flags.code_bin.map(|it| it.parse()).transpose()?;
|
let client_bin = flags.code_bin.map(|it| it.parse()).transpose()?;
|
||||||
|
|
||||||
InstallCmd {
|
InstallCmd {
|
||||||
client: if flags.server { None } else { client_bin },
|
client: if flags.server { None } else { Some(client_bin).unwrap_or_default() },
|
||||||
server: if flags.client { None } else { Some(ServerOpt { malloc }) },
|
server: if flags.client { None } else { Some(ServerOpt { malloc }) },
|
||||||
}
|
}
|
||||||
.run()
|
.run()
|
||||||
|
|
Loading…
Reference in a new issue