3472: Fix dist again r=matklad a=matklad



bors r+
🤖

Co-authored-by: Aleksey Kladov <aleksey.kladov@gmail.com>
This commit is contained in:
bors[bot] 2020-03-05 10:56:12 +00:00 committed by GitHub
commit aec78f090c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -56,9 +56,9 @@ fn dist_server() -> Result<()> {
let (src, dst) = if cfg!(target_os = "linux") {
("./target/x86_64-unknown-linux-musl/release/rust-analyzer", "./dist/rust-analyzer-linux")
} else if cfg!(target_os = "windows") {
("/target/release/rust-analyzer.exe", "./dist/rust-analyzer-windows.exe")
("./target/release/rust-analyzer.exe", "./dist/rust-analyzer-windows.exe")
} else if cfg!(target_os = "macos") {
("/target/release/rust-analyzer", "./dist/rust-analyzer-mac")
("./target/release/rust-analyzer", "./dist/rust-analyzer-mac")
} else {
panic!("Unsupported OS")
};