3
0
Fork 0
forked from mirrors/nixpkgs

Merge pull request #139366 from sagikazarmark/fix-gotestsum-ldflags

gotestsum: fix package name in ldflags
This commit is contained in:
figsoda 2021-09-24 21:17:07 -04:00 committed by GitHub
commit 366dcea347
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -15,7 +15,7 @@ buildGoModule rec {
doCheck = false;
ldflags = [ "-s" "-w" "-X main.version=${version}" ];
ldflags = [ "-s" "-w" "-X gotest.tools/gotestsum/cmd.version=${version}" ];
subPackages = [ "." ];