aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCédric Bonhomme <cedric@cedricbonhomme.org>2017-04-07 08:57:49 +0200
committerCédric Bonhomme <cedric@cedricbonhomme.org>2017-04-07 08:57:49 +0200
commit2b3e45f9fae1b642bcc19505e3b899227de2adf0 (patch)
treec7a050aa37a83586e94d7ddeda27cbfbcaea8836
parentPython >= 3.5 (diff)
downloadnewspipe-2b3e45f9fae1b642bcc19505e3b899227de2adf0.tar.gz
newspipe-2b3e45f9fae1b642bcc19505e3b899227de2adf0.tar.bz2
newspipe-2b3e45f9fae1b642bcc19505e3b899227de2adf0.zip
fix the link where bootstrao should be cloned
-rw-r--r--app.json2
1 files changed, 1 insertions, 1 deletions
diff --git a/app.json b/app.json
index e8bb2585..4c4564be 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; cd submodules/bootstrap/; git clone https://github.com/twbs/bootstrap.git"
+ "postdeploy": "python src/manager.py db_create; cd submodules/bootstrap/; git clone https://github.com/twbs/bootstrap.git ."
},
"env": {
"PLATFORM_URL": {
bgstack15