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.
2 parents ee75928 + 700a1a3 commit aec78f0Copy full SHA for aec78f0
xtask/src/dist.rs
@@ -56,9 +56,9 @@ fn dist_server() -> Result<()> {
56
let (src, dst) = if cfg!(target_os = "linux") {
57
("./target/x86_64-unknown-linux-musl/release/rust-analyzer", "./dist/rust-analyzer-linux")
58
} else if cfg!(target_os = "windows") {
59
- ("/target/release/rust-analyzer.exe", "./dist/rust-analyzer-windows.exe")
+ ("./target/release/rust-analyzer.exe", "./dist/rust-analyzer-windows.exe")
60
} else if cfg!(target_os = "macos") {
61
- ("/target/release/rust-analyzer", "./dist/rust-analyzer-mac")
+ ("./target/release/rust-analyzer", "./dist/rust-analyzer-mac")
62
} else {
63
panic!("Unsupported OS")
64
};
0 commit comments