From 4498c4596590896c5b4f750670e361a9486e99fd Mon Sep 17 00:00:00 2001 From: futile Date: Thu, 6 Nov 2025 04:20:40 +0000 Subject: [PATCH] apply clippy suggestion --- build.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.rs b/build.rs index a7ae975..1b97465 100644 --- a/build.rs +++ b/build.rs @@ -13,7 +13,7 @@ fn main() { fn embed_latest_git_hash() { let git_rev_parse = std::process::Command::new("git") - .args(&["rev-parse", "--short=8", "HEAD"]) + .args(["rev-parse", "--short=8", "HEAD"]) .output() .unwrap(); let git_hash = String::from_utf8(git_rev_parse.stdout).unwrap();