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