Disable echo in publish task

This commit is contained in:
Gabriel Augendre 2021-11-20 16:00:30 +01:00
parent f413c617e0
commit 9ab6cd8e04

View file

@ -36,4 +36,4 @@ def publish(ctx):
args = ""
if username and password:
args = f"--username {username} --password {password}"
ctx.run(f"poetry publish --build {args}", pty=True, echo=True)
ctx.run(f"poetry publish --build {args}", pty=True, echo=False)