Currently it works incorrectly if user specifies own build tags
and with race detection (e.g. runtime/race is not selected,
because it contains only test files with +build race).
R=golang-dev, r
CC=golang-dev
https://golang.org/cl/
6814107
return filepath.SkipDir
}
- _, err = build.ImportDir(path, 0)
+ _, err = buildContext.ImportDir(path, 0)
if err != nil {
return nil
}
}
have[name] = true
- _, err = build.ImportDir(path, 0)
+ _, err = buildContext.ImportDir(path, 0)
if err != nil && strings.Contains(err.Error(), "no Go source files") {
return nil
}