From 9f9166acfcca9530e93e7b4bfe5460f93748381f Mon Sep 17 00:00:00 2001 From: gvicentin Date: Fri, 12 Jul 2024 16:52:33 -0300 Subject: [PATCH] fix: fix input prompt for password --- tsuru/auth/native.go | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/tsuru/auth/native.go b/tsuru/auth/native.go index 102ac6ad..8f0aec57 100644 --- a/tsuru/auth/native.go +++ b/tsuru/auth/native.go @@ -19,6 +19,10 @@ import ( func nativeLogin(ctx *cmd.Context) error { var email string + + // Use raw output to avoid missing the input prompt messages + ctx.RawOutput() + if len(ctx.Args) > 0 { email = ctx.Args[0] } else {