diff options
| author | mo8it <mo8it@proton.me> | 2025-01-01 22:07:41 +0100 |
|---|---|---|
| committer | mo8it <mo8it@proton.me> | 2025-01-01 22:07:41 +0100 |
| commit | 1aec7c1152e9b57142d5efaee4a9d95072b760bf (patch) | |
| tree | 3820d002d2427edb062dfb50ed89302ef206a54e | |
| parent | 0b55809bb9c75ecdb5018e214a5ee3aa0363348f (diff) | |
Fix Windows CI
| -rw-r--r-- | build.rs | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -1,6 +1,5 @@ fn main() { // Fix building from source on Windows because it can't handle file links. #[cfg(windows)] - std::fs::copy("dev/Cargo.toml", "dev-Cargo.toml") - .expect("Failed to copy the file `dev/Cargo.toml` to `dev-Cargo.toml`"); + let _ = std::fs::copy("dev/Cargo.toml", "dev-Cargo.toml"); } |
