Skip to content

Commit

Permalink
Update build.rs
Browse files Browse the repository at this point in the history
  • Loading branch information
yihozhang authored Oct 2, 2024
1 parent c5fa39d commit b87504c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ use std::{env, process::Command};
#[allow(clippy::disallowed_macros)] // for println!
fn main() {
lalrpop::process_root().unwrap();
let git_hash = Command::new("git2")
let git_hash = Command::new("git")
.args(["rev-parse", "--short", "HEAD"])
.output()
.map(|output| {
Expand Down

0 comments on commit b87504c

Please sign in to comment.