diff options
author | Jeff Forcier <jeff@bitprophet.org> | 2017-02-20 21:23:16 -0800 |
---|---|---|
committer | Jeff Forcier <jeff@bitprophet.org> | 2017-02-20 21:23:25 -0800 |
commit | 97c8becb3a192aae89d6eb5b4c92c8084420baed (patch) | |
tree | 98ceb778c36a8dc56de819f1f454f722959c9941 /tasks.py | |
parent | f9bafb731054db9299ba03551e440a46992e9c7c (diff) |
Main release module configures the tasks to hide stdout, undo that
Diffstat (limited to 'tasks.py')
-rw-r--r-- | tasks.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -32,7 +32,7 @@ def release(ctx, sdist=True, wheel=True, sign=True, dry_run=False): Wraps invocations.packaging.publish to add baked-in docs folder. """ # Build docs first. Use terribad workaround pending invoke #146 - ctx.run("inv docs") + ctx.run("inv docs", pty=True, hide=False) # Move the built docs into where Epydocs used to live target = 'docs' rmtree(target, ignore_errors=True) |