Skip to content

Commit 4319e79

Browse files
committed
chore: cargo clippy
1 parent b0b1b4f commit 4319e79

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/wasm/build.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ use std::process::Command;
22

33
fn main() {
44
let output = Command::new("git")
5-
.args(&["rev-parse", "HEAD"])
5+
.args(["rev-parse", "HEAD"])
66
.output()
77
.expect("Git is required to build");
88
let git_hash = String::from_utf8(output.stdout).unwrap();

0 commit comments

Comments
 (0)