helmfile: Fix version string

This commit is contained in:
Zhong Jianxin
2023-02-22 12:55:49 -06:00
committed by Eric Bailey
parent 53624ccbd1
commit d0c43b82f9
@@ -17,7 +17,7 @@ buildGoModule rec {
subPackages = [ "." ];
ldflags = [ "-s" "-w" "-X github.com/helmfile/helmfile/pkg/app/version.Version=${version}" ];
ldflags = [ "-s" "-w" "-X go.szostok.io/version.version=v${version}" ];
nativeBuildInputs = [ installShellFiles ];