diff --git a/pkg/commandutils/command_utils.go b/pkg/commandutils/command_utils.go index 1593abf8..2d9dfbf8 100644 --- a/pkg/commandutils/command_utils.go +++ b/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 } }