commands: Correct input colors

Signed-off-by: Chris Crone <christopher.crone@docker.com>
This commit is contained in:
Chris Crone 2020-11-20 14:40:56 +01:00
Родитель 2f39b6ebb3
Коммит 946378c566
3 изменённых файлов: 3 добавлений и 3 удалений

Просмотреть файл

@ -76,7 +76,7 @@ func runRm(ctx context.Context, streams command.Streams, hubClient *hub.Client,
}
fmt.Fprintln(streams.Out(), ansi.Warn(fmt.Sprintf("WARNING: You are about to permanently delete repository %q including %d tag(s)", namedRef.Name(), count)))
fmt.Fprintln(streams.Out(), ansi.Warn(" This action is irreversible"))
fmt.Fprintln(streams.Out(), ansi.Warn("Enter the name of the repository to confirm deletion:"), namedRef.Name())
fmt.Fprintln(streams.Out(), ansi.Info("Enter the name of the repository to confirm deletion:"), namedRef.Name())
userIn := make(chan string, 1)
go func() {
reader := bufio.NewReader(streams.In())

Просмотреть файл

@ -73,7 +73,7 @@ func runRm(ctx context.Context, streams command.Streams, hubClient *hub.Client,
if !opts.force {
fmt.Fprintln(streams.Out(), ansi.Warn(fmt.Sprintf(`WARNING: You are about to permanently delete image "%s:%s"`, reference.FamiliarName(ref), ref.Tag())))
fmt.Fprintln(streams.Out(), ansi.Warn(" This action is irreversible"))
fmt.Fprintf(streams.Out(), "Are you sure you want to delete the image tagged %q from repository %q? [y/N]", ref.Tag(), reference.FamiliarName(ref))
fmt.Fprintf(streams.Out(), ansi.Info("Are you sure you want to delete the image tagged %q from repository %q? [y/N] "), ref.Tag(), reference.FamiliarName(ref))
userIn := make(chan string, 1)
go func() {
reader := bufio.NewReader(streams.In())

Просмотреть файл

@ -102,7 +102,7 @@ func readPassword(streams command.Streams) (string, error) {
if err != nil {
return "", err
}
fmt.Fprintf(streams.Out(), "Password: ")
fmt.Fprint(streams.Out(), ansi.Info("Password: "))
if err := term.DisableEcho(in.FD(), oldState); err != nil {
return "", err
}