We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b0b1b4f commit 4319e79Copy full SHA for 4319e79
src/wasm/build.rs
@@ -2,7 +2,7 @@ use std::process::Command;
2
3
fn main() {
4
let output = Command::new("git")
5
- .args(&["rev-parse", "HEAD"])
+ .args(["rev-parse", "HEAD"])
6
.output()
7
.expect("Git is required to build");
8
let git_hash = String::from_utf8(output.stdout).unwrap();
0 commit comments