From 278c7013d20dfd8ce71f5f85bfa1165f90e41518 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andrzej=20Bro=C5=84ski?= Date: Fri, 26 Jul 2024 12:40:05 +0200 Subject: [PATCH] Fix clippy error. --- kairos-cli/build.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kairos-cli/build.rs b/kairos-cli/build.rs index 3c233094..12f4422b 100644 --- a/kairos-cli/build.rs +++ b/kairos-cli/build.rs @@ -12,7 +12,7 @@ fn main() { let dest_path = Path::new(&out_dir).join("deposit-session-optimized.wasm"); // Copy the file from the source to the destination - fs::copy(&source_path, dest_path).expect("Failed to copy WASM file"); + fs::copy(source_path, dest_path).expect("Failed to copy WASM file"); // Print out a message to re-run this script if the source file changes. println!("cargo:rerun-if-changed={}", session_binaries_dir.display());