From d888706e1e111fd285a06eee23289244451062e8 Mon Sep 17 00:00:00 2001 From: nimrod-up9 <59927337+nimrod-up9@users.noreply.github.com> Date: Tue, 27 Jul 2021 14:52:43 +0300 Subject: [PATCH] Show that the default answer to analysis prompt is yes. (#144) --- cli/cmd/tap.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cli/cmd/tap.go b/cli/cmd/tap.go index 3e67195cd..16072facb 100644 --- a/cli/cmd/tap.go +++ b/cli/cmd/tap.go @@ -85,7 +85,7 @@ Supported protocols are HTTP and gRPC.`, if mizuTapOptions.Analysis { mizu.Log.Infof(analysisMessageToConfirm) - if !uiUtils.AskForConfirmation("Would you like to proceed [y/n]: ") { + if !uiUtils.AskForConfirmation("Would you like to proceed [Y/n]: ") { mizu.Log.Infof("You can always run mizu without analysis, aborting") os.Exit(0) }