Correct version string (#1474)

Corrects the version string to expected result

i.e 
`Lighthouse/v0.2.0-0feb3cf1/aarch64-linux`
This commit is contained in:
Age Manning 2020-08-06 05:34:54 +00:00
parent f4fe2ac533
commit ee036cba7e

View File

@ -10,7 +10,7 @@ use target_info::Target;
/// `Lighthouse/v0.2.0-1419501f2+` /// `Lighthouse/v0.2.0-1419501f2+`
pub const VERSION: &str = git_version!( pub const VERSION: &str = git_version!(
args = ["--always", "--dirty=+"], args = ["--always", "--dirty=+"],
prefix = "Lighthouse/v0.2.0/", prefix = "Lighthouse/v0.2.0-",
fallback = "unknown" fallback = "unknown"
); );