1
0
mirror of https://github.com/jht5945/buildj.git synced 2025-12-29 02:10:04 +08:00

fix: fix github

This commit is contained in:
2021-02-06 00:31:18 +08:00
parent 1e933bde6b
commit 7248796b2e
6 changed files with 45 additions and 32 deletions

View File

@@ -2,10 +2,7 @@ use std::process::Command;
fn main() {
let output = Command::new("git").args(&["rev-parse", "HEAD"]).output().unwrap();
let mut git_hash = String::from_utf8(output.stdout).unwrap();
if git_hash.is_empty() {
git_hash = "0000000000000000000000000000000000000000".to_string();
}
let git_hash = String::from_utf8(output.stdout).unwrap();
println!("cargo:rustc-env=GIT_HASH={}", git_hash);
let date_output = Command::new("date").args(&["+%Y-%m-%dT%H:%M:%S%z"]).output().unwrap();
let date = String::from_utf8(date_output.stdout).unwrap();