summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeff Forcier <jeff@bitprophet.org>2017-02-20 21:23:16 -0800
committerJeff Forcier <jeff@bitprophet.org>2017-02-20 21:23:16 -0800
commit078cfd0fce8b6fa0f57acd6c8cb438f2a14573fb (patch)
tree0be8182c191e58afacec7c765ee49cda8cd1d614
parentd7071f33c82604798010a0c77015b0e9b88027e9 (diff)
downloadparamiko-078cfd0fce8b6fa0f57acd6c8cb438f2a14573fb.tar.gz
Main release module configures the tasks to hide stdout, undo that
-rw-r--r--tasks.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tasks.py b/tasks.py
index 61319aa9..41df8b27 100644
--- a/tasks.py
+++ b/tasks.py
@@ -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)