mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-08-18 01:43:47 +00:00
build: fix typo
This commit is contained in:
parent
341647f186
commit
eb5b777adc
1 changed files with 3 additions and 3 deletions
|
|
@ -697,9 +697,9 @@ func doDockerBuildx(cmdline []string) {
|
||||||
pass := getenvBase64("DOCKER_HUB_PASSWORD")
|
pass := getenvBase64("DOCKER_HUB_PASSWORD")
|
||||||
|
|
||||||
if len(user) > 0 && len(pass) > 0 {
|
if len(user) > 0 && len(pass) > 0 {
|
||||||
auther := exec.Command("docker", "login", "-u", string(user), "--password-stdin")
|
author := exec.Command("docker", "login", "-u", string(user), "--password-stdin")
|
||||||
auther.Stdin = bytes.NewReader(pass)
|
author.Stdin = bytes.NewReader(pass)
|
||||||
build.MustRun(auther)
|
build.MustRun(author)
|
||||||
}
|
}
|
||||||
// Retrieve the version infos to build and push to the following paths:
|
// Retrieve the version infos to build and push to the following paths:
|
||||||
// - ethereum/client-go:latest - Pushes to the master branch, Geth only
|
// - ethereum/client-go:latest - Pushes to the master branch, Geth only
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue