mirror of https://github.com/hashicorp/consul
cli: remove stray whitespace when loading the consul version from the VERSION file
Fixes a regression from #15631 in the output of `consul version` from: Consul v1.16.0-dev +ent Revision 56b86acbe5+CHANGES to Consul v1.16.0-dev+ent Revision 56b86acbe5+CHANGESpull/16467/head
parent
29db217a0e
commit
e734b0c1df
|
@ -20,7 +20,7 @@ var (
|
|||
//go:embed VERSION
|
||||
fullVersion string
|
||||
|
||||
Version, VersionPrerelease, _ = strings.Cut(fullVersion, "-")
|
||||
Version, VersionPrerelease, _ = strings.Cut(strings.TrimSpace(fullVersion), "-")
|
||||
|
||||
// https://semver.org/#spec-item-10
|
||||
VersionMetadata = ""
|
||||
|
|
Loading…
Reference in New Issue