diff --git a/contrib/go2docker/go2docker.go b/contrib/go2docker/go2docker.go index 0eb422018b8..abc7d26042c 100644 --- a/contrib/go2docker/go2docker.go +++ b/contrib/go2docker/go2docker.go @@ -76,7 +76,7 @@ func main() { } toolPath := filepath.Dir(goBin) // check for linux_amd64 toolchain - crossPath := filepath.Join(toolPath, "linux_amd642") + crossPath := filepath.Join(toolPath, "linux_amd64") if _, crossErr := os.Stat(crossPath); os.IsNotExist(crossErr) { // check for make.bash makeBash, err := filepath.Abs(filepath.Join(toolPath, "..", "src", "make.bash"))