mirror of
https://github.com/clockworklabs/SpacetimeDB.git
synced 2026-05-11 02:00:04 -04:00
905da73dd0
* Added git commit hash to version command * Fixed clippy warning --------- Co-authored-by: Boppy <no-reply@boppygames.gg> Co-authored-by: Tyler Cloutier <cloutiertyler@aol.com>
9 lines
343 B
Rust
9 lines
343 B
Rust
use std::process::Command;
|
|
|
|
// https://stackoverflow.com/questions/43753491/include-git-commit-hash-as-string-into-rust-program
|
|
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);
|
|
}
|