mirror of
https://github.com/clockworklabs/SpacetimeDB.git
synced 2026-05-17 05:07:35 -04:00
10 lines
379 B
Rust
10 lines
379 B
Rust
use std::process::Command;
|
|
|
|
// https://stackoverflow.com/questions/43753491/include-git-commit-hash-as-string-into-rust-program
|
|
#[allow(clippy::disallowed_macros)]
|
|
fn main() {
|
|
let output = Command::new("git").args(["rev-parse", "HEAD"]).output().unwrap();
|
|
let git_hash = String::from_utf8(output.stdout).unwrap();
|
|
println!("cargo:rustc-env=GIT_HASH={}", git_hash);
|
|
}
|