Skip to content

Commit a5aa32e

Browse files
committed
Fix latest-git.sh
1 parent 9ef0c06 commit a5aa32e

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

.travis.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ before_install:
1919
- |
2020
if [ "$LATEST_GIT" = "1" ]; then
2121
./latest-git.sh
22-
export PATH="/tmp/git:$PATH"
22+
export PATH="/tmp/git/bin:$PATH"
2323
fi
2424
- git --version
2525
after_success:

latest-git.sh

+2-1
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,6 @@
33
set -ex
44
git clone git://github.com/git/git --depth 1 /tmp/git
55
pushd /tmp/git
6-
make -j 8
6+
make prefix=/tmp/git -j 8 all
7+
make prefix=/tmp/git install
78
popd

0 commit comments

Comments
 (0)