diff options
| author | Carlos Martín Nieto <cmn@dwim.me> | 2017-09-28 17:19:56 +0200 |
|---|---|---|
| committer | Carlos Martín Nieto <cmn@dwim.me> | 2017-09-28 17:20:32 +0200 |
| commit | 366f4136ec50888d2d52316dc07d775a71bed97e (patch) | |
| tree | da60ff15fb0917208c1d7798c7d5a2fdd589de54 | |
| parent | 8c19969a88c3b6e72564e812537b15cbc0fb4cc0 (diff) | |
| download | libgit2-366f4136ec50888d2d52316dc07d775a71bed97e.tar.gz | |
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 c17c3f8a ("travis: drop support for Ubuntu Precise") in error.
| -rwxr-xr-x | script/install-deps-linux.sh | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/script/install-deps-linux.sh b/script/install-deps-linux.sh index 7be13c3aa..15bac4d08 100755 --- a/script/install-deps-linux.sh +++ b/script/install-deps-linux.sh @@ -2,4 +2,11 @@ set -x +if [ -z "$PRECISE" ]; then + echo "deb http://libgit2deps.edwardthomson.com trusty libgit2deps" | sudo tee -a /etc/apt/sources.list + sudo apt-key adv --keyserver pgp.mit.edu --recv 99131CD5 + sudo apt-get update -qq + sudo apt-get install -y curl libcurl3 libcurl3-gnutls libcurl4-gnutls-dev +fi + sudo apt-get install -y cmake libssh2-1-dev openssh-client openssh-server valgrind |
