From a152df07c82bed7d9b632a886a4094fa5f34d6f1 Mon Sep 17 00:00:00 2001 From: tt rt <6380129+anonkey@users.noreply.github.com> Date: Thu, 1 Feb 2024 14:06:34 +0100 Subject: [PATCH] fix/installer: Unknown commit typo (#828) --- crates/nanocl_utils/src/build_tools.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/nanocl_utils/src/build_tools.rs b/crates/nanocl_utils/src/build_tools.rs index 468105e60..2ab9b3ec9 100644 --- a/crates/nanocl_utils/src/build_tools.rs +++ b/crates/nanocl_utils/src/build_tools.rs @@ -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 = "".to_owned(); + git_hash = "".to_owned(); } println!("cargo:rustc-env=GIT_HASH={git_hash}"); Ok(())