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:
5
build.rs
5
build.rs
@@ -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();
|
||||
|
||||
Reference in New Issue
Block a user