Merge pull request #155011 from lunaris/patch-1

git-lfs: Build subcommands
This commit is contained in:
Pascal Bach 2022-01-25 22:21:45 +01:00 committed by GitHub
commit 41e28ecc08
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -19,6 +19,12 @@ buildGoPackage rec {
subPackages = [ "." ];
preBuild = ''
pushd go/src/github.com/git-lfs/git-lfs
go generate ./commands
popd
'';
postBuild = ''
make -C go/src/${goPackagePath} man
'';