summaryrefslogtreecommitdiff
path: root/extra
diff options
context:
space:
mode:
authorAsk Solem <ask@celeryproject.org>2016-04-07 15:59:26 -0700
committerAsk Solem <ask@celeryproject.org>2016-04-07 17:29:30 -0700
commit719ce2ef78d14ddfdb1f0cab52dbc771274450a1 (patch)
tree3e8dbcce266e754cbd61b6f3aee8bbd9970f4db2 /extra
parentd7316fea10e6eba053886a683b0a26076338be63 (diff)
downloadkombu-719ce2ef78d14ddfdb1f0cab52dbc771274450a1.tar.gz
Use celery_sphinx to manage docs
Diffstat (limited to 'extra')
-rwxr-xr-xextra/doc2ghpages13
1 files changed, 0 insertions, 13 deletions
diff --git a/extra/doc2ghpages b/extra/doc2ghpages
deleted file mode 100755
index 5ebc7aaa..00000000
--- a/extra/doc2ghpages
+++ /dev/null
@@ -1,13 +0,0 @@
-#!/bin/bash
-
-git checkout master
-(cd docs;
- rm -rf .build;
- make html;
- (cd .build/html;
- sphinx-to-github;))
-git checkout gh-pages
-cp -r docs/.build/html/* .
-git commit . -m "Autogenerated documentation for github."
-git push origin gh-pages
-git checkout master