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(())