make git commit hash available at compile time

This commit is contained in:
Joachim Lusiardi 2023-12-31 17:41:59 +01:00
parent a69e89c806
commit 85496e3200
2 changed files with 8 additions and 1 deletions

7
build.rs Normal file
View File

@ -0,0 +1,7 @@
use std::process::Command;
fn main() {
let output = Command::new("git").args(&["rev-parse", "--short", "HEAD"]).output().unwrap();
let git_hash = String::from_utf8(output.stdout).unwrap();
println!("cargo:rustc-env=GIT_HASH={}", git_hash);
}

View File

@ -160,6 +160,7 @@ fn main() -> Result<()> {
text += format!("\nYou gained {} experience.", game.get_player().get_experience()).as_str();
text += format!("\nYou collected {} gold.", game.get_player().get_gold()).as_str();
text += format!("\nYou played {} seconds.", playtime.as_secs()).as_str();
text += format!("\nYou played game version '{}'.", env!("GIT_HASH")).as_str();
let paragraph = Paragraph::new(text).block(block).wrap(Wrap { trim: true });
frame.render_widget(paragraph, area);
});
@ -171,7 +172,6 @@ fn main() -> Result<()> {
}
}
}
stdout().execute(LeaveAlternateScreen)?;
disable_raw_mode()?;
Ok(())