mirror of
https://github.com/rust-lang/rust-analyzer
synced 2024-12-26 13:03:31 +00:00
Make xtask install work again
This commit is contained in:
parent
52143a5ac0
commit
89d089f547
1 changed files with 2 additions and 2 deletions
|
@ -289,7 +289,7 @@ impl Malloc {
|
|||
|
||||
impl Install {
|
||||
pub(crate) fn server(&self) -> Option<ServerOpt> {
|
||||
if !self.server {
|
||||
if (self.client || self.proc_macro_server) && !self.server {
|
||||
return None;
|
||||
}
|
||||
let malloc = if self.mimalloc {
|
||||
|
@ -308,7 +308,7 @@ impl Install {
|
|||
Some(ProcMacroServerOpt { dev_rel: self.dev_rel })
|
||||
}
|
||||
pub(crate) fn client(&self) -> Option<ClientOpt> {
|
||||
if !self.client {
|
||||
if (self.server || self.proc_macro_server) && !self.client {
|
||||
return None;
|
||||
}
|
||||
Some(ClientOpt { code_bin: self.code_bin.clone() })
|
||||
|
|
Loading…
Reference in a new issue