Skip to content

Commit aec78f0

Browse files
bors[bot]matklad
andauthored
Merge #3472
3472: Fix dist again r=matklad a=matklad bors r+ 🤖 Co-authored-by: Aleksey Kladov <aleksey.kladov@gmail.com>
2 parents ee75928 + 700a1a3 commit aec78f0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

xtask/src/dist.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,9 +56,9 @@ fn dist_server() -> Result<()> {
5656
let (src, dst) = if cfg!(target_os = "linux") {
5757
("./target/x86_64-unknown-linux-musl/release/rust-analyzer", "./dist/rust-analyzer-linux")
5858
} else if cfg!(target_os = "windows") {
59-
("/target/release/rust-analyzer.exe", "./dist/rust-analyzer-windows.exe")
59+
("./target/release/rust-analyzer.exe", "./dist/rust-analyzer-windows.exe")
6060
} else if cfg!(target_os = "macos") {
61-
("/target/release/rust-analyzer", "./dist/rust-analyzer-mac")
61+
("./target/release/rust-analyzer", "./dist/rust-analyzer-mac")
6262
} else {
6363
panic!("Unsupported OS")
6464
};

0 commit comments

Comments
 (0)