contrib/go2docker: fix typo

This commit is contained in:
Johan Euphrosine 2015-02-26 12:22:36 -08:00
parent 5838854c27
commit 6be03b6121

View File

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