diff --git a/flytectl/pkg/commandutils/command_utils.go b/flytectl/pkg/commandutils/command_utils.go index 1593abf880..2d9dfbf81c 100644 --- a/flytectl/pkg/commandutils/command_utils.go +++ b/flytectl/pkg/commandutils/command_utils.go @@ -14,7 +14,7 @@ func AskForConfirmation(s string, reader io.Reader) bool { response := strings.ToLower(strings.TrimSpace(r.Text())) if response == "y" || response == "yes" { return true - } else if response == "n" || response == "No" { + } else if response == "n" || response == "no" { return false } }