Skip to content

Commit

Permalink
commands: Correct input colors
Browse files Browse the repository at this point in the history
Signed-off-by: Chris Crone <christopher.crone@docker.com>
  • Loading branch information
chris-crone committed Nov 20, 2020
1 parent 2f39b6e commit 337a315
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion internal/commands/repo/rm.go
Original file line number Diff line number Diff line change
Expand Up @@ -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())
Expand Down
2 changes: 1 addition & 1 deletion internal/commands/tag/rm.go
Original file line number Diff line number Diff line change
Expand Up @@ -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())
Expand Down
2 changes: 1 addition & 1 deletion internal/login/login.go
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ func readPassword(streams command.Streams) (string, error) {
if err != nil {
return "", err
}
fmt.Fprintf(streams.Out(), "Password: ")
fmt.Fprintf(streams.Out(), ansi.Info("Password: "))
if err := term.DisableEcho(in.FD(), oldState); err != nil {
return "", err
}
Expand Down

0 comments on commit 337a315

Please sign in to comment.