summaryrefslogtreecommitdiffhomepage
path: root/tasks.py
diff options
context:
space:
mode:
authorJeff Forcier <jeff@bitprophet.org>2015-10-02 16:20:27 -0700
committerJeff Forcier <jeff@bitprophet.org>2015-10-02 16:20:27 -0700
commit985df357ec039bcb28f6f260e64e9838204506f6 (patch)
tree1b5631a3f2bf48888537409ac9b75510d7d43c2d /tasks.py
parent5b1b13c2fb48ac55d64022212bf132b8c01ce0c7 (diff)
Fix dumb bug in release task
Diffstat (limited to 'tasks.py')
-rw-r--r--tasks.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/tasks.py b/tasks.py
index 3d575670..7c920daf 100644
--- a/tasks.py
+++ b/tasks.py
@@ -30,7 +30,8 @@ def release(ctx):
# Move the built docs into where Epydocs used to live
target = 'docs'
rmtree(target, ignore_errors=True)
- copytree(docs_build, target)
+ # TODO: make it easier to yank out this config val from the docs coll
+ copytree('sites/docs/_build', target)
# Publish
publish(ctx)
# Remind