Makes Path rewrites work, as the metadata was never being scanned.
Fixes #3282.
R=golang-dev, bradfitz
CC=golang-dev
https://golang.org/cl/
5783076
first = dir
}
+ useFiles := false
+
+ // Always include all files under /doc.
+ if path == "/doc" || strings.HasPrefix(path, "/doc/") {
+ useFiles = true // always include docs
+ }
+
// If we don't yet have Go files in 'all' and this directory
// has some, add all the files from this directory.
// Otherwise, only add subdirectories.
- useFiles := false
- if !haveGo {
+ if !useFiles && !haveGo {
for _, d := range dir {
if strings.HasSuffix(d.Name(), ".go") {
useFiles = true