mirror of
https://github.com/xvxx/phetch
synced 2024-11-05 00:00:58 +00:00
27 lines
748 B
Rust
27 lines
748 B
Rust
use std::{env, process};
|
|
|
|
fn main() {
|
|
println!("cargo:rustc-env=PLATFORM={}", env::var("TARGET").unwrap());
|
|
println!("cargo:rustc-env=BUILD_DATE={}", sh("date +%Y-%m-%d"));
|
|
println!(
|
|
"cargo:rustc-env=GIT_REF={}",
|
|
sh("git rev-parse --short HEAD")
|
|
)
|
|
}
|
|
|
|
fn sh(args: &str) -> String {
|
|
let args: Vec<&str> = args.split(" ").collect();
|
|
let cmd = args[0];
|
|
let args: Vec<_> = args.iter().skip(1).collect();
|
|
|
|
if let Ok(output) = process::Command::new(cmd).args(&args).output() {
|
|
if !output.status.success() {
|
|
eprintln!("Error running {} {:?}", cmd, args);
|
|
process::exit(1);
|
|
}
|
|
String::from_utf8(output.stdout).unwrap()
|
|
} else {
|
|
String::new()
|
|
}
|
|
}
|