mirror of
https://github.com/rust-lang/rust-analyzer
synced 2024-11-14 17:07:26 +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()?;
|
||||
|
||||
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 }) },
|
||||
}
|
||||
.run()
|
||||
|
|
Loading…
Reference in a new issue