From c0fa5e2246457df10e92c2e11c971f2f40921793 Mon Sep 17 00:00:00 2001 From: Aleksey Kladov Date: Tue, 18 Feb 2020 12:33:16 +0100 Subject: Rename the binary to rust-analyzer --- xtask/src/install.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'xtask/src/install.rs') diff --git a/xtask/src/install.rs b/xtask/src/install.rs index 91426377f..247a2bca4 100644 --- a/xtask/src/install.rs +++ b/xtask/src/install.rs @@ -39,7 +39,7 @@ impl InstallCmd { " Installation complete. - Add `\"rust-analyzer.raLspServerPath\": \"ra_lsp_server\",` to VS Code settings, + Add `\"rust-analyzer.raLspServerPath\": \"rust-analyzer\",` to VS Code settings, otherwise it will use the latest release from GitHub. " ) @@ -142,7 +142,7 @@ fn install_server(opts: ServerOpt) -> Result<()> { } let jemalloc = if opts.jemalloc { "--features jemalloc" } else { "" }; - let res = run!("cargo install --path crates/ra_lsp_server --locked --force {}", jemalloc); + let res = run!("cargo install --path crates/rust-analyzer --locked --force {}", jemalloc); if res.is_err() && old_rust { eprintln!( -- cgit v1.2.3