summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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");
}