From 1aec7c1152e9b57142d5efaee4a9d95072b760bf Mon Sep 17 00:00:00 2001 From: mo8it Date: Wed, 1 Jan 2025 22:07:41 +0100 Subject: Fix Windows CI --- build.rs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'build.rs') 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"); } -- cgit v1.2.3