diff options
author | Gygaxis Vainhardt | 2021-11-14 15:09:02 +0000 |
---|---|---|
committer | GitHub | 2021-11-14 15:09:02 +0000 |
commit | 0949a0de7fec9e11f8011693f84b1939b0a6a548 (patch) | |
tree | 9b014515f97a3002d17053df431bb1cf4564f46e /helix-term/src | |
parent | b74912ea78079cde3e1ee3b2dc1a2a6d68568a36 (diff) |
Add commit hash to version info, if present (#957)
* Add commit hash to version info, if present
* Rename GIT_HASH to indicate that it includes version, fix linter error
* Add whitespace after use statement
Co-authored-by: Ivan Tham <pickfire@riseup.net>
Co-authored-by: Ivan Tham <pickfire@riseup.net>
Diffstat (limited to 'helix-term/src')
-rw-r--r-- | helix-term/src/main.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/helix-term/src/main.rs b/helix-term/src/main.rs index e178b339..3ae4f7c9 100644 --- a/helix-term/src/main.rs +++ b/helix-term/src/main.rs @@ -66,7 +66,7 @@ FLAGS: -V, --version Prints version information ", env!("CARGO_PKG_NAME"), - env!("CARGO_PKG_VERSION"), + env!("VERSION_AND_GIT_HASH"), env!("CARGO_PKG_AUTHORS"), env!("CARGO_PKG_DESCRIPTION"), logpath.display(), @@ -81,7 +81,7 @@ FLAGS: } if args.display_version { - println!("helix {}", env!("CARGO_PKG_VERSION")); + println!("helix {}", env!("VERSION_AND_GIT_HASH")); std::process::exit(0); } |