build: fix typo

This commit is contained in:
calciumbe 2024-12-23 22:11:49 +08:00
parent 341647f186
commit eb5b777adc
No known key found for this signature in database
GPG key ID: 92A6C8D87253B95C

View file

@ -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