瀏覽代碼

Merge branch 'master' of github.com:ask/celery

Ask Solem 14 年之前
父節點
當前提交
597ff9a08b
共有 1 個文件被更改,包括 8 次插入0 次删除
  1. 8 0
      pavement.py

+ 8 - 0
pavement.py

@@ -24,6 +24,14 @@ def html(options):
     builtdocs.move(destdir)
 
 
+@task
+@needs("paver.doctools.html")
+def qhtml(options):
+    destdir = path("Documentation")
+    builtdocs = sphinx_builddir(options)
+    sh("rsync -az %s/ %s" % (builtdocs, destdir))
+
+
 @task
 @needs("clean_docs", "paver.doctools.html")
 def ghdocs(options):