diff --git a/cli/command/utils.go b/cli/command/utils.go index b19c9379bb..16b79fe065 100644 --- a/cli/command/utils.go +++ b/cli/command/utils.go @@ -78,7 +78,7 @@ func PromptForConfirmation(ins io.Reader, outs io.Writer, message string) bool { } message += " [y/N] " - fmt.Fprintf(outs, message) + _, _ = fmt.Fprint(outs, message) // On Windows, force the use of the regular OS stdin stream. if runtime.GOOS == "windows" {