aboutsummaryrefslogtreecommitdiff
path: root/install.sh
diff options
context:
space:
mode:
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