From dd110725603bc0017c3ee684578a17e310fc71c5 Mon Sep 17 00:00:00 2001 From: jasonwitty Date: Mon, 1 Dec 2025 15:28:51 -0800 Subject: [PATCH] Fix clippy warnings: remove needless borrows in build.rs --- build.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build.rs b/build.rs index 22b331d..dd8257f 100644 --- a/build.rs +++ b/build.rs @@ -105,11 +105,11 @@ fn build_documentation() { let copy_result = if cfg!(target_os = "windows") { Command::new("xcopy") - .args(&["/E", "/I", "/Y", "docs\\book", "static\\docs"]) + .args(["/E", "/I", "/Y", "docs\\book", "static\\docs"]) .status() } else { Command::new("cp") - .args(&["-r", "docs/book", "static/docs"]) + .args(["-r", "docs/book", "static/docs"]) .status() };