fix rust version

This commit is contained in:
waalge
2023-09-27 22:25:55 +00:00
committed by Lucas
parent 14a6141046
commit dbd4fe2aab
2 changed files with 3 additions and 3 deletions

View File

@@ -1,5 +1,4 @@
use clap::Parser;
use std::env;
pub mod blueprint;
pub mod build;
@@ -57,6 +56,6 @@ fn version() -> String {
format!(
"v{} {}",
built_info::PKG_VERSION,
built_info::GIT_COMMIT_HASH_SHORT
built_info::GIT_COMMIT_HASH_SHORT.unwrap_or("unknown")
)
}