From a8dedf569528b13c0a35b55e00e5f75658f67b24 Mon Sep 17 00:00:00 2001 From: Oscar Pepper Date: Thu, 31 Aug 2023 16:48:47 +0100 Subject: [PATCH] added comment back in --- zingolib/build.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/zingolib/build.rs b/zingolib/build.rs index 7a6953ce2..0bc000e4d 100644 --- a/zingolib/build.rs +++ b/zingolib/build.rs @@ -19,6 +19,7 @@ fn main() -> Result<(), Box> { let git_description = String::from_utf8(output.stdout).unwrap(); + // Write the git description to a file which will be included in the crate let out_dir = env::var_os("OUT_DIR").unwrap(); let dest_path = Path::new(&out_dir).join("git_description.rs"); let mut f = File::create(dest_path).unwrap();