Make xtask install work again

This commit is contained in:
Laurențiu Nicola 2024-07-19 09:11:26 +03:00
parent 52143a5ac0
commit 89d089f547

View file

@ -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() })