From c7cef6e7afcf4e30081064177dd8131005254ff6 Mon Sep 17 00:00:00 2001 From: Didier Date: Mon, 8 May 2023 14:45:23 +0200 Subject: [PATCH] fix: version->tag --- src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.rs b/src/main.rs index 31a7f93..05dd769 100644 --- a/src/main.rs +++ b/src/main.rs @@ -23,7 +23,7 @@ fn main() { trace!("Config: {:#?}", &config); debug!("commit: {}", env!("GIT_COMMIT_HASH")); - debug!("version: {}", env!("GIT_TAG")); + debug!("tag: {}", env!("GIT_TAG")); let input_files = files::get_files(&config.files.input_path) .into_iter()