aboutsummaryrefslogtreecommitdiff
path: root/app.json
diff options
context:
space:
mode:
authorCédric Bonhomme <cedric@cedricbonhomme.org>2017-04-06 13:19:16 +0200
committerCédric Bonhomme <cedric@cedricbonhomme.org>2017-04-06 13:19:16 +0200
commit33ef1a0e62ef4bef2eafe8e6c53118d0d5d43335 (patch)
treebe7deeaf14dc14fb45bd8d03dd732cdd284adc37 /app.json
parenttypo (diff)
downloadnewspipe-33ef1a0e62ef4bef2eafe8e6c53118d0d5d43335.tar.gz
newspipe-33ef1a0e62ef4bef2eafe8e6c53118d0d5d43335.tar.bz2
newspipe-33ef1a0e62ef4bef2eafe8e6c53118d0d5d43335.zip
fixed postdeploy script.
Diffstat (limited to 'app.json')
-rw-r--r--app.json2
1 files changed, 1 insertions, 1 deletions
diff --git a/app.json b/app.json
index eafb7f4f..e8bb2585 100644
--- a/app.json
+++ b/app.json
@@ -10,7 +10,7 @@
"repository": "https://github.com/newspipe/newspipe",
"logo": "https://raw.githubusercontent.com/newspipe/newspipe/master/src/web/static/img/newspipe.png",
"scripts": {
- "postdeploy": "python src/manager.py db_create; git submodule init; git submodule update"
+ "postdeploy": "python src/manager.py db_create; cd submodules/bootstrap/; git clone https://github.com/twbs/bootstrap.git"
},
"env": {
"PLATFORM_URL": {
bgstack15