We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b6819c2 commit 700a1a3Copy full SHA for 700a1a3
xtask/src/dist.rs
@@ -55,9 +55,9 @@ fn dist_server() -> Result<()> {
55
let (src, dst) = if cfg!(target_os = "linux") {
56
("./target/x86_64-unknown-linux-musl/release/rust-analyzer", "./dist/rust-analyzer-linux")
57
} else if cfg!(target_os = "windows") {
58
- ("/target/release/rust-analyzer.exe", "./dist/rust-analyzer-windows.exe")
+ ("./target/release/rust-analyzer.exe", "./dist/rust-analyzer-windows.exe")
59
} else if cfg!(target_os = "macos") {
60
- ("/target/release/rust-analyzer", "./dist/rust-analyzer-mac")
+ ("./target/release/rust-analyzer", "./dist/rust-analyzer-mac")
61
} else {
62
panic!("Unsupported OS")
63
};
0 commit comments