apply clippy suggestion

This commit is contained in:
2025-11-06 04:20:40 +00:00
parent af8a5b1746
commit 4498c45965
+1 -1
View File
@@ -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();