aboutsummaryrefslogtreecommitdiff
path: root/xtask/src/dist.rs
diff options
context:
space:
mode:
Diffstat (limited to 'xtask/src/dist.rs')
-rw-r--r--xtask/src/dist.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/xtask/src/dist.rs b/xtask/src/dist.rs
index 737751ae8..4c0fbaf57 100644
--- a/xtask/src/dist.rs
+++ b/xtask/src/dist.rs
@@ -55,9 +55,9 @@ fn dist_server() -> Result<()> {
55 let (src, dst) = if cfg!(target_os = "linux") { 55 let (src, dst) = if cfg!(target_os = "linux") {
56 ("./target/x86_64-unknown-linux-musl/release/rust-analyzer", "./dist/rust-analyzer-linux") 56 ("./target/x86_64-unknown-linux-musl/release/rust-analyzer", "./dist/rust-analyzer-linux")
57 } else if cfg!(target_os = "windows") { 57 } else if cfg!(target_os = "windows") {
58 ("/target/release/rust-analyzer.exe", "./dist/rust-analyzer-windows.exe") 58 ("./target/release/rust-analyzer.exe", "./dist/rust-analyzer-windows.exe")
59 } else if cfg!(target_os = "macos") { 59 } else if cfg!(target_os = "macos") {
60 ("/target/release/rust-analyzer", "./dist/rust-analyzer-mac") 60 ("./target/release/rust-analyzer", "./dist/rust-analyzer-mac")
61 } else { 61 } else {
62 panic!("Unsupported OS") 62 panic!("Unsupported OS")
63 }; 63 };