Skip to content

Commit

Permalink
fix/installer: Unknown commit typo (#828)
Browse files Browse the repository at this point in the history
  • Loading branch information
anonkey authored Feb 1, 2024
1 parent 715ff97 commit a152df0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/nanocl_utils/src/build_tools.rs
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ pub fn set_env_git_commit_hash() -> Result<()> {
};
let mut git_hash = String::from_utf8(output.stdout).unwrap();
if git_hash.is_empty() {
git_hash = "<unknow>".to_owned();
git_hash = "<unknown>".to_owned();
}
println!("cargo:rustc-env=GIT_HASH={git_hash}");
Ok(())
Expand Down

0 comments on commit a152df0

Please sign in to comment.