fix version string redundancy

This commit is contained in:
kayos 2021-08-16 12:18:38 -07:00
parent 5528bd925c
commit ed222d181d

@ -125,13 +125,9 @@ func init() {
cliFlags()
go sigHandler()
// to make versioning via git commits work, build like this:
//
// export GIT_COMMIT=$(git rev-list -1 HEAD) && go build ./ ld
if len(GitVersion) > 0 {
log.Info().
Str("Version", "git-"+GitVersion).
Str("Version", GitVersion).
Str("Built", BuildDate).
Msg("Initializing protomolecule")
}