aboutsummaryrefslogtreecommitdiff
path: root/install.sh
diff options
context:
space:
mode:
authorCédric Bonhomme <cedric@cedricbonhomme.org>2016-02-08 07:12:19 +0100
committerCédric Bonhomme <cedric@cedricbonhomme.org>2016-02-08 07:12:19 +0100
commit7d5298816d931ca4eadd0ac67fa2df8f4188aaeb (patch)
tree4b68ebfc5d2e21e23809e3e7a12d2da43e0e21d7 /install.sh
parentMove the dashboard button in the user's menu. (diff)
downloadnewspipe-7d5298816d931ca4eadd0ac67fa2df8f4188aaeb.tar.gz
newspipe-7d5298816d931ca4eadd0ac67fa2df8f4188aaeb.tar.bz2
newspipe-7d5298816d931ca4eadd0ac67fa2df8f4188aaeb.zip
Updated install script.
Diffstat (limited to 'install.sh')
-rwxr-xr-xinstall.sh4
1 files changed, 4 insertions, 0 deletions
diff --git a/install.sh b/install.sh
index 5eb0ec13..867dfc78 100755
--- a/install.sh
+++ b/install.sh
@@ -42,3 +42,7 @@ fi
python$PYTHON_VERSION src/manager.py db_empty
python$PYTHON_VERSION src/manager.py db_create
+
+# Bootstrap
+git submodule init
+git submodule update
bgstack15