aboutsummaryrefslogtreecommitdiff
path: root/vagrant
diff options
context:
space:
mode:
authorCédric Bonhomme <cedric@cedricbonhomme.org>2015-03-26 21:16:29 +0100
committerCédric Bonhomme <cedric@cedricbonhomme.org>2015-03-26 21:16:29 +0100
commit2b43c5da73ff8daa1b7b6b32f500cf9e502431c6 (patch)
tree6d24dfa544e2a453c667919cdbb3f141a64e03a2 /vagrant
parentUpdated Vagrant version. (diff)
downloadnewspipe-2b43c5da73ff8daa1b7b6b32f500cf9e502431c6.tar.gz
newspipe-2b43c5da73ff8daa1b7b6b32f500cf9e502431c6.tar.bz2
newspipe-2b43c5da73ff8daa1b7b6b32f500cf9e502431c6.zip
Don't ask for confirmation of uninstall deletions with pip.
Diffstat (limited to 'vagrant')
-rw-r--r--vagrant/bootstrap.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/vagrant/bootstrap.sh b/vagrant/bootstrap.sh
index 927a39b2..6952afc3 100644
--- a/vagrant/bootstrap.sh
+++ b/vagrant/bootstrap.sh
@@ -22,7 +22,7 @@ apt-get install -y libxml2-dev libxslt1-dev
sudo pip3 install --upgrade -r requirements.txt
wget https://raw.github.com/pypa/pip/master/contrib/get-pip.py
sudo python3 get-pip.py
-sudo pip3 uninstall feedparser
+sudo pip3 uninstall -y feedparser
sudo pip3 install feedparser==5.1.2
# copy of the default configuration files for vagrant
cp vagrant/conf.cfg-sample conf/conf.cfg
bgstack15