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

Commit 834b6c5

Browse files
committed
Interrupt step upon first failure
1 parent 1765479 commit 834b6c5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.drone.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,9 @@ pipeline:
2626
curl -sL "https://github.com/git/git/archive/v1.7.2.tar.gz" -o git.tar.gz &&
2727
tar -C build -xzf git.tar.gz &&
2828
cd build/git-1.7.2 &&
29-
{ autoconf 2> err || cat err; } &&
29+
{ autoconf 2> err || cat err && false; } &&
3030
./configure --without-tcltk --prefix=/usr/local > /dev/null &&
31-
{ make install NO_PERL=please > /dev/null 2> err || cat err; } &&
31+
{ make install NO_PERL=please > /dev/null 2> err || cat err && false; } &&
3232
cd ../.. &&
3333
rm -rf build git.tar.gz &&
3434
hash -r &&

0 commit comments

Comments
 (0)