diff options
author | Jeff Forcier <jeff@bitprophet.org> | 2015-10-02 16:20:27 -0700 |
---|---|---|
committer | Jeff Forcier <jeff@bitprophet.org> | 2015-11-02 12:46:46 -0800 |
commit | 663e4ca4a0363670d6dd72a512e936d0c47457c0 (patch) | |
tree | 43d288d8af3f5b180b142b3de0add484aa50b332 /tasks.py | |
parent | aed3d8b75a49ca85a322cf95d6b6dcc1131619fd (diff) |
Fix dumb bug in release task
Diffstat (limited to 'tasks.py')
-rw-r--r-- | tasks.py | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -25,7 +25,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 |