From ee036cba7e5529317486760c62a2535df2bcae7b Mon Sep 17 00:00:00 2001 From: Age Manning Date: Thu, 6 Aug 2020 05:34:54 +0000 Subject: [PATCH] Correct version string (#1474) Corrects the version string to expected result i.e `Lighthouse/v0.2.0-0feb3cf1/aarch64-linux` --- common/lighthouse_version/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/lighthouse_version/src/lib.rs b/common/lighthouse_version/src/lib.rs index 3be1edbd0..04c3ee887 100644 --- a/common/lighthouse_version/src/lib.rs +++ b/common/lighthouse_version/src/lib.rs @@ -10,7 +10,7 @@ use target_info::Target; /// `Lighthouse/v0.2.0-1419501f2+` pub const VERSION: &str = git_version!( args = ["--always", "--dirty=+"], - prefix = "Lighthouse/v0.2.0/", + prefix = "Lighthouse/v0.2.0-", fallback = "unknown" );