From 33b8067b63429710e369c9da3feb2aa6a4f7a041 Mon Sep 17 00:00:00 2001 From: Wolfgang Bumiller Date: Thu, 6 Feb 2025 15:24:06 +0100 Subject: [PATCH] include binary name in --version output Signed-off-by: Wolfgang Bumiller --- src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.rs b/src/main.rs index 9641438..59bc40b 100644 --- a/src/main.rs +++ b/src/main.rs @@ -119,7 +119,7 @@ fn parse_args() -> Result { print!("{CMD_HELP}"); std::process::exit(0); } else if args.contains(["-V", "--version"]) { - println!("Version: {VERSION}"); + println!("vma-to-pbs version {VERSION}"); std::process::exit(0); }