Skip to content

Commit

Permalink
Fix clippy error.
Browse files Browse the repository at this point in the history
  • Loading branch information
koxu1996 committed Jul 26, 2024
1 parent bb290ee commit 278c701
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion kairos-cli/build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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());
Expand Down

0 comments on commit 278c701

Please sign in to comment.