Files
pre-commit/latest-git.sh
Anthony Sottile a5aa32ee72 Fix latest-git.sh
2016-11-07 10:37:46 -08:00

9 lines
217 B
Bash
Executable File

#!/usr/bin/env bash
# This is a script used in travis-ci to have latest git
set -ex
git clone git://github.com/git/git --depth 1 /tmp/git
pushd /tmp/git
make prefix=/tmp/git -j 8 all
make prefix=/tmp/git install
popd