fork of https://github.com/sourcegraph/zoekt
0

Configure Feed

Select the types of activity you want to include in your feed.

cmd/zoekt-index: check for errors while walking the dir

Change-Id: Ia416e9c955f674d8781824e625b6e34ab5efa602

+4
+4
cmd/zoekt-index/main.go
··· 33 33 } 34 34 35 35 func (a *fileAggregator) add(path string, info os.FileInfo, err error) error { 36 + if err != nil { 37 + return err 38 + } 39 + 36 40 if info.IsDir() { 37 41 base := filepath.Base(path) 38 42 if _, ok := a.ignoreDirs[base]; ok {