diff options
author | Cédric Bonhomme <cedric@cedricbonhomme.org> | 2016-02-08 07:14:09 +0100 |
---|---|---|
committer | Cédric Bonhomme <cedric@cedricbonhomme.org> | 2016-02-08 07:14:09 +0100 |
commit | 31bdb8d6c52e127e8348d6bc0098410b304cc1ca (patch) | |
tree | 1a47ca4b648e451b4cef649d325dc699a6610973 /vagrant | |
parent | Updated install script. (diff) | |
download | newspipe-31bdb8d6c52e127e8348d6bc0098410b304cc1ca.tar.gz newspipe-31bdb8d6c52e127e8348d6bc0098410b304cc1ca.tar.bz2 newspipe-31bdb8d6c52e127e8348d6bc0098410b304cc1ca.zip |
Updated Vagrant install script.
Diffstat (limited to 'vagrant')
-rw-r--r-- | vagrant/bootstrap.sh | 6 |
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
|