cli/command/registry: remove deprecated io/ioutil

Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
This commit is contained in:
Sebastiaan van Stijn 2022-02-25 14:29:48 +01:00
parent f61aab59f7
commit 3b3a0b898f
No known key found for this signature in database
GPG Key ID: 76698F39D527CE8C

View File

@ -3,7 +3,7 @@ package registry
import ( import (
"context" "context"
"fmt" "fmt"
"io/ioutil" "io"
"strings" "strings"
"github.com/docker/cli/cli" "github.com/docker/cli/cli"
@ -84,7 +84,7 @@ func verifyloginOptions(dockerCli command.Cli, opts *loginOptions) error {
return errors.New("Must provide --username with --password-stdin") return errors.New("Must provide --username with --password-stdin")
} }
contents, err := ioutil.ReadAll(dockerCli.In()) contents, err := io.ReadAll(dockerCli.In())
if err != nil { if err != nil {
return err return err
} }