fix: typo

This commit is contained in:
guangwu 2024-03-11 14:48:13 +08:00 committed by GitHub
parent 3dc549b3d7
commit f33532ff56
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -522,9 +522,9 @@ func doDocker(cmdline []string) {
pass := getenvBase64("DOCKER_HUB_PASSWORD") pass := getenvBase64("DOCKER_HUB_PASSWORD")
if len(user) > 0 && len(pass) > 0 { if len(user) > 0 && len(pass) > 0 {
auther := exec.Command("docker", "login", "-u", string(user), "--password-stdin") author := exec.Command("docker", "login", "-u", string(user), "--password-stdin")
auther.Stdin = bytes.NewReader(pass) author.Stdin = bytes.NewReader(pass)
build.MustRun(auther) build.MustRun(author)
} }
// Retrieve the version infos to build and push to the following paths: // Retrieve the version infos to build and push to the following paths:
// - ethereum/client-go:latest - Pushes to the master branch, Geth only // - ethereum/client-go:latest - Pushes to the master branch, Geth only