Fix "git lfs help" command.

This commit is contained in:
Elliott Sales de Andrade 2017-11-04 00:26:57 -04:00
parent ed55ea90eb
commit 1df9caa5a9

View File

@ -111,10 +111,14 @@ mkdir -p src/%{provider}.%{provider_tld}/%{project}/
ln -s $(pwd) src/%{provider}.%{provider_tld}/%{project}/%{repo}
export GOPATH=$(pwd):%{gopath}
%gobuild -o bin/git-lfs %{import_path}
# Build manpages first (some embedding in the executable is done.)
pushd docs
ronn man/*.ronn
%gobuild -o mangen man/mangen.go
./mangen
popd
# Build manpages
ronn docs/man/*.ronn
%gobuild -o bin/git-lfs %{import_path}
# Build test executables
for go in test/cmd/*.go; do
@ -214,6 +218,7 @@ popd
%changelog
* Fri Nov 03 2017 Elliott Sales de Andrade <quantum.analyst@gmail.com> 2.3.4-2
- Patch tests to work on slow systems like arm and aarch builders.
- Fix "git lfs help" command.
* Fri Nov 03 2017 Elliott Sales de Andrade <quantum.analyst@gmail.com> 2.3.4-1
- Update to latest release.