diff --git a/build/ci.go b/build/ci.go index 4d8dba6ce2..a75e0d1f18 100644 --- a/build/ci.go +++ b/build/ci.go @@ -522,9 +522,9 @@ func doDocker(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