aboutsummaryrefslogtreecommitdiff
path: root/crates
diff options
context:
space:
mode:
authorAleksey Kladov <[email protected]>2019-08-07 11:12:23 +0100
committerAleksey Kladov <[email protected]>2019-08-07 11:12:23 +0100
commita2966944a80c7e017865e9705628e41b5bb4cd14 (patch)
tree67b588539365a6f5a92e8a33a49d9fc13381b083 /crates
parent7e12422fa2c8ba7b3df63b4e4297464a0071a359 (diff)
install server first
closes #1658
Diffstat (limited to 'crates')
-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