We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 16a76aa commit 97b1550Copy full SHA for 97b1550
xtask/src/main.rs
@@ -63,7 +63,7 @@ fn main() -> Result<()> {
63
let client_bin = flags.code_bin.map(|it| it.parse()).transpose()?;
64
65
InstallCmd {
66
- client: if flags.server { None } else { client_bin },
+ client: if flags.server { None } else { Some(client_bin).unwrap_or_default() },
67
server: if flags.client { None } else { Some(ServerOpt { malloc }) },
68
}
69
.run()
0 commit comments