mirror of https://github.com/Leinnan/rpack.git
22 lines
655 B
Rust
22 lines
655 B
Rust
use std::process::Command;
|
|
|
|
fn main() {
|
|
// note: add error checking yourself.
|
|
{
|
|
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[..7]);
|
|
}
|
|
{
|
|
let output = Command::new("git")
|
|
.args(["log", "-1", "--date=format:%Y/%m/%d %T", "--format=%ad"])
|
|
.output()
|
|
.unwrap();
|
|
let git_hash = String::from_utf8(output.stdout).unwrap();
|
|
println!("cargo:rustc-env=GIT_DATE={}", git_hash);
|
|
}
|
|
}
|