From f33532ff5682243808274e0c3baf211e436a5946 Mon Sep 17 00:00:00 2001 From: guangwu Date: Mon, 11 Mar 2024 14:48:13 +0800 Subject: [PATCH] fix: typo --- build/ci.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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