git-lfs/script/install-git-source

9 lines
150 B
Plaintext
Raw Normal View History

2016-11-15 20:04:25 +00:00
#!/usr/bin/env bash
# Builds git from a given git ref. Used for CircleCI OSX builds
cd git-source
git checkout "$1"
2016-11-15 20:10:46 +00:00
make --jobs=2
make install
cd ..