From 9ab6cd8e04bb08f0734f86e3d57a6edb49ec7ab7 Mon Sep 17 00:00:00 2001 From: Gabriel Augendre Date: Sat, 20 Nov 2021 16:00:30 +0100 Subject: [PATCH] Disable echo in publish task --- tasks.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tasks.py b/tasks.py index f5a6843..513aef7 100644 --- a/tasks.py +++ b/tasks.py @@ -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)