teach script/integration how to run against a specific git-lfs build

This commit is contained in:
Rick Olson 2015-06-19 10:58:30 -06:00
parent 973649e2ee
commit df2eb7cb65

@ -102,14 +102,14 @@ setup() {
rm -rf "$REMOTEDIR"
mkdir "$REMOTEDIR"
if [ -z "$SKIPCOMPILE" ]; then
if [ -z "$SKIPCOMPILE" ] && [ -z "$LFS_BIN" ]; then
echo "compile git-lfs for $0"
script/bootstrap || {
return $?
}
fi
echo "Git LFS: $(which git-lfs)"
echo "Git LFS: ${LFS_BIN:-(which git-lfs)}"
git lfs version
if [ -z "$SKIPCOMPILE" ]; then