From eb5b777adc282850af565111335ddb111a4e7e7b Mon Sep 17 00:00:00 2001 From: calciumbe <192480234+calciumbe@users.noreply.github.com> Date: Mon, 23 Dec 2024 22:11:49 +0800 Subject: [PATCH] build: fix typo --- build/ci.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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