aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCédric Bonhomme <cedric@cedricbonhomme.org>2016-02-08 07:14:09 +0100
committerCédric Bonhomme <cedric@cedricbonhomme.org>2016-02-08 07:14:09 +0100
commit31bdb8d6c52e127e8348d6bc0098410b304cc1ca (patch)
tree1a47ca4b648e451b4cef649d325dc699a6610973
parentUpdated install script. (diff)
downloadnewspipe-31bdb8d6c52e127e8348d6bc0098410b304cc1ca.tar.gz
newspipe-31bdb8d6c52e127e8348d6bc0098410b304cc1ca.tar.bz2
newspipe-31bdb8d6c52e127e8348d6bc0098410b304cc1ca.zip
Updated Vagrant install script.
-rw-r--r--vagrant/bootstrap.sh6
1 files changed, 5 insertions, 1 deletions
diff --git a/vagrant/bootstrap.sh b/vagrant/bootstrap.sh
index fba8b5c9..f418926c 100644
--- a/vagrant/bootstrap.sh
+++ b/vagrant/bootstrap.sh
@@ -11,11 +11,15 @@ if [ $? -ne 0 ]; then
exit 1;
fi
+cd JARR
+# Bootstrap
+git submodule init
+git submodule update
+
# Installation of PostgreSQL
apt-get install -y postgresql postgresql-server-dev-9.4 postgresql-client
# Install all Python requierements
-cd JARR
# For lxml
apt-get install -y libxml2-dev libxslt1-dev
# installation with pip
bgstack15