From 31bdb8d6c52e127e8348d6bc0098410b304cc1ca Mon Sep 17 00:00:00 2001 From: Cédric Bonhomme Date: Mon, 8 Feb 2016 07:14:09 +0100 Subject: Updated Vagrant install script. --- vagrant/bootstrap.sh | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) 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 -- cgit