aboutsummaryrefslogtreecommitdiff
path: root/app.json
diff options
context:
space:
mode:
authorCédric Bonhomme <cedric@cedricbonhomme.org>2017-04-07 11:15:42 +0200
committerCédric Bonhomme <cedric@cedricbonhomme.org>2017-04-07 11:15:42 +0200
commit8950edb0dd98f17a15f0b8c74c390da86924659b (patch)
tree0b61e78ac2feda0c1e16c6633b75fff0f9952fe3 /app.json
parentchange order of buildpacks (diff)
downloadnewspipe-8950edb0dd98f17a15f0b8c74c390da86924659b.tar.gz
newspipe-8950edb0dd98f17a15f0b8c74c390da86924659b.tar.bz2
newspipe-8950edb0dd98f17a15f0b8c74c390da86924659b.zip
Heroku Button will not work with repos that have Git submodules. Heroku Button relies on the Build API and uses tarballs fetched from GitHub...
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 e8a96efb..89d39bb5 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"
},
"addons": [
"heroku-postgresql:hobby-dev",
bgstack15