We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent feeb06c commit 82acfc9Copy full SHA for 82acfc9
cli/cmd/release_create.go
@@ -184,8 +184,7 @@ Prepared to create release with defaults:
184
if err != nil {
185
return err
186
}
187
- switch strings.ToLower(confirmed) {
188
- case "n", "N":
+ if strings.ToLower(confirmed) == "n" {
189
return errors.New("configuration declined")
190
191
fmt.Printf("You can use the --confirm-auto or -y flag in the future to skip this prompt.\n")
0 commit comments