Skip to content
This repository was archived by the owner on Apr 12, 2019. It is now read-only.

Commit 93fb71c

Browse files
committed
Fix (hopefully) git 1.7.0 install
1 parent 3bde35d commit 93fb71c

File tree

1 file changed

+8
-11
lines changed

1 file changed

+8
-11
lines changed

.drone.yml

Lines changed: 8 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -20,17 +20,14 @@ pipeline:
2020
- make lint
2121
- git --version
2222
- make test
23-
- mkdir build \
24-
&& curl -sL "https://github.com/git/git/archive/v1.7.0.tar.gz" -o git.tar.gz \
25-
&& tar -C build -xzf git.tar.gz \
26-
&& cd build/git-1.7.0 \
27-
&& chmod +x configure \
28-
&& ./configure \
29-
&& make all \
30-
&& make install PREFIX=/usr/local \
31-
&& cd ../.. \
32-
&& rm -rf build \
33-
&& rm git.tar.gz
23+
- mkdir build &&
24+
curl -sL "https://github.com/git/git/archive/v1.7.0.tar.gz" -o git.tar.gz &&
25+
tar -C build -xzf git.tar.gz &&
26+
cd build/git-1.7.0 &&
27+
make install PREFIX=/usr/local &&
28+
cd ../.. &&
29+
rm -rf build &&
30+
rm git.tar.gz
3431
- git --version
3532
- hash -r
3633
- git --version

0 commit comments

Comments
 (0)