Skip to content

Commit 366f413

Browse files
committed
travis: keep installing our custom libcurl build
The block in the script installs the packages if we're _not_ on Precise. This was dropped in c17c3f8 ("travis: drop support for Ubuntu Precise") in error.
1 parent 8c19969 commit 366f413

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

script/install-deps-linux.sh

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,11 @@
22

33
set -x
44

5+
if [ -z "$PRECISE" ]; then
6+
echo "deb http://libgit2deps.edwardthomson.com trusty libgit2deps" | sudo tee -a /etc/apt/sources.list
7+
sudo apt-key adv --keyserver pgp.mit.edu --recv 99131CD5
8+
sudo apt-get update -qq
9+
sudo apt-get install -y curl libcurl3 libcurl3-gnutls libcurl4-gnutls-dev
10+
fi
11+
512
sudo apt-get install -y cmake libssh2-1-dev openssh-client openssh-server valgrind

0 commit comments

Comments
 (0)