aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--crates/ra_tools/src/main.rs6
1 files changed, 3 insertions, 3 deletions
diff --git a/crates/ra_tools/src/main.rs b/crates/ra_tools/src/main.rs
index 4fcb2adeb..54d96e446 100644
--- a/crates/ra_tools/src/main.rs
+++ b/crates/ra_tools/src/main.rs
@@ -63,12 +63,12 @@ fn install(opts: InstallOpt) -> Result<()> {
63 if cfg!(target_os = "macos") { 63 if cfg!(target_os = "macos") {
64 fix_path_for_mac()? 64 fix_path_for_mac()?
65 } 65 }
66 if let Some(client) = opts.client {
67 install_client(client)?;
68 }
69 if let Some(server) = opts.server { 66 if let Some(server) = opts.server {
70 install_server(server)?; 67 install_server(server)?;
71 } 68 }
69 if let Some(client) = opts.client {
70 install_client(client)?;
71 }
72 Ok(()) 72 Ok(())
73} 73}
74 74