We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6854cbb commit 6737e48Copy full SHA for 6737e48
build/build.rs
@@ -26,6 +26,7 @@ fn main() {
26
let git_branch = get_value("git", &["rev-parse", "--abbrev-ref", "HEAD"]);
27
let git_commit = get_value("git", &["rev-parse", "HEAD"]);
28
let commit_date = get_value("git", &["log", "-1", "--date=iso", "--pretty=format:%cd"]);
29
+ let build_time = get_value("date", &["+%Y-%m-%d %T %z"]);
30
let rust_version = get_value("rustc", &["--version"]);
31
32
println!("cargo:rustc-env=BUILD_GIT_BRANCH={}", git_branch);
0 commit comments