chore: FHS 3.0 compliance

This commit is contained in:
iff 2024-12-10 15:00:55 +01:00
parent 3c4e2b06bd
commit 8d7e21f99f
3 changed files with 10 additions and 6 deletions

View file

@ -87,4 +87,8 @@ fn print_version() {
"version: {}",
option_env!("CARGO_PKG_VERSION").unwrap_or("unknown")
);
let lib = option_env!("_PR_LIB").map(|dir| dir.to_string());
if lib.is_some() {
println!("lib: {}", lib.unwrap());
}
}