summaryrefslogtreecommitdiff
path: root/build.rs
diff options
context:
space:
mode:
authormo8it <mo8it@proton.me>2025-01-01 22:07:41 +0100
committermo8it <mo8it@proton.me>2025-01-01 22:07:41 +0100
commit1aec7c1152e9b57142d5efaee4a9d95072b760bf (patch)
tree3820d002d2427edb062dfb50ed89302ef206a54e /build.rs
parent0b55809bb9c75ecdb5018e214a5ee3aa0363348f (diff)
Fix Windows CI
Diffstat (limited to 'build.rs')
-rw-r--r--build.rs3
1 files changed, 1 insertions, 2 deletions
diff --git a/build.rs b/build.rs
index 79a1fad..5687864 100644
--- a/build.rs
+++ b/build.rs
@@ -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");
}