From fb435b7417361b637fb4adadeca746afd707c3f5 Mon Sep 17 00:00:00 2001 From: SamTV12345 <40429738+samtv12345@users.noreply.github.com> Date: Wed, 8 Nov 2023 16:36:48 +0100 Subject: [PATCH] Create sqlite version git. --- build.rs | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/build.rs b/build.rs index 27c6a074..f22f9414 100644 --- a/build.rs +++ b/build.rs @@ -24,14 +24,7 @@ fn main() { } } - if let Ok(version) = version_from_git_info() { - println!("cargo:rustc-env=VW_VERSION={version}"); - println!("cargo:rustc-env=CARGO_PKG_VERSION={version}"); - println!("cargo:rustc-env=GIT_EXACT_TAG={version}"); - } - else{ - create_git_sqlite(); - } + create_git_sqlite(); }