aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCédric Bonhomme <cedric@cedricbonhomme.org>2015-03-25 07:51:17 +0100
committerCédric Bonhomme <cedric@cedricbonhomme.org>2015-03-25 07:51:17 +0100
commiteea3391f37c1c49d6721f360cde34dde0d6ae6ce (patch)
tree5f394dd63387b607fc218e87a17b8e74c9f93b15
parentImproved installation script (tested with PostgreSQL, problem with SQLite bec... (diff)
downloadnewspipe-eea3391f37c1c49d6721f360cde34dde0d6ae6ce.tar.gz
newspipe-eea3391f37c1c49d6721f360cde34dde0d6ae6ce.tar.bz2
newspipe-eea3391f37c1c49d6721f360cde34dde0d6ae6ce.zip
Added '-y' option to when installing dependencies with apt.
-rwxr-xr-xinstall.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/install.sh b/install.sh
index 0b187dea..09144fe1 100755
--- a/install.sh
+++ b/install.sh
@@ -5,8 +5,8 @@
# for Python 3.
#
-sudo apt-get install python libpq-dev python-dev python-pip build-essential git
-sudo apt-get install libxml2-dev libxslt1-dev # for lxml
+sudo apt-get install -y python libpq-dev python-dev python-pip build-essential git
+sudo apt-get install -y libxml2-dev libxslt1-dev # for lxml
sed -i '/psycopg2/d' requirements.txt
sudo pip install --upgrade -r requirements.txt
bgstack15