Closed kalbasit closed 5 years ago
https://github.com/xetys/hetzner-kube/blob/5f062d2ffe59aab8ae112a842b44f4ec4139efae/cmd/version.go#L10
^^ this should be var version = "DEVELOP" instead of a const as it cannot be set via ldflags.
var version = "DEVELOP"
$ make VERSION=1.0.0 build [ ... ] $ ./dist/hetzner-kube-1.0.0-linux-amd64 version DEVELOP
@kalbasit nice catch, thx!
https://github.com/xetys/hetzner-kube/blob/5f062d2ffe59aab8ae112a842b44f4ec4139efae/cmd/version.go#L10
^^ this should be
var version = "DEVELOP"
instead of a const as it cannot be set via ldflags.