From 0cb51c52c8e59c0635711aae648e7ed72b02667e Mon Sep 17 00:00:00 2001 From: Cyryl Plotnicki-Chudyk Date: Sun, 19 Jul 2015 13:28:34 +0200 Subject: [PATCH] don't install python3-pip on travis as not available there --- common/configure_fresh_system | 2 +- travis/configure_fresh_system | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/common/configure_fresh_system b/common/configure_fresh_system index 587a9ae3..1ca70faf 100755 --- a/common/configure_fresh_system +++ b/common/configure_fresh_system @@ -74,7 +74,7 @@ echo "installing todoman" cd "$DIR/common/todoman/" sudo python3 setup.py install echo "installing vdirsyncer" -sudo pip3 install vdirsyncer +sudo pip install vdirsyncer echo echo "now go ahead and restart" diff --git a/travis/configure_fresh_system b/travis/configure_fresh_system index d2bf02a2..751a0f9b 100755 --- a/travis/configure_fresh_system +++ b/travis/configure_fresh_system @@ -6,7 +6,7 @@ COMMAND_PREFIX="DEBIAN_FRONTEND=noninteractive apt-get -y -o Dpkg::Options::=\"- curl --silent --location https://deb.nodesource.com/setup_0.12 | sudo bash sudo apt-get update -INSTALL_COMMAND="sudo $COMMAND_PREFIX install meld whois zsh tmux vim atop aria2 curl pv gajim tor torsocks nodejs terminator gsmartcontrol python-pip mesa-utils mesa-utils-extra aptitude p7zip-full p7zip-rar thunderbird mercurial kdiff3 gnupg2 python3-setuptools realpath python3-dev python3 python3-pip" +INSTALL_COMMAND="sudo $COMMAND_PREFIX install meld whois zsh tmux vim atop aria2 curl pv gajim tor torsocks nodejs terminator gsmartcontrol python-pip mesa-utils mesa-utils-extra aptitude p7zip-full p7zip-rar thunderbird mercurial kdiff3 gnupg2 python3-setuptools realpath python3-dev python3" eval ${INSTALL_COMMAND} DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"