mirror of
https://github.com/nushell/nushell.git
synced 2024-11-23 08:53:29 +01:00
22519c9083
* Add commit to version command * Replace unwrap with expect. * Only have commit hash if git doesn't error Co-authored-by: Jonathan Turner <jonathandturner@users.noreply.github.com>
29 lines
881 B
Rust
29 lines
881 B
Rust
use git2::Repository;
|
|
use std::path::Path;
|
|
use std::{env, fs, io};
|
|
|
|
fn main() -> Result<(), io::Error> {
|
|
let out_dir = env::var_os("OUT_DIR").expect(
|
|
"\
|
|
OUT_DIR environment variable not found. \
|
|
OUT_DIR is guaranteed to to exist in a build script by cargo - see \
|
|
https://doc.rust-lang.org/cargo/reference/environment-variables.html#environment-variables-cargo-sets-for-build-scripts\
|
|
");
|
|
|
|
let latest_commit_hash = latest_commit_hash(env::current_dir()?).unwrap_or_default();
|
|
|
|
let commit_hash_path = Path::new(&out_dir).join("git_commit_hash");
|
|
fs::write(commit_hash_path, latest_commit_hash)?;
|
|
|
|
Ok(())
|
|
}
|
|
|
|
fn latest_commit_hash<P: AsRef<Path>>(dir: P) -> Result<String, git2::Error> {
|
|
let dir = dir.as_ref();
|
|
Ok(Repository::discover(dir)?
|
|
.head()?
|
|
.peel_to_commit()?
|
|
.id()
|
|
.to_string())
|
|
}
|