mirror of
https://github.com/beego/bee.git
synced 2024-11-21 23:50:54 +00:00
Merge pull request #454 from scf2k/fixscan
Fix: docs generator skips everything containing 'vendor'
This commit is contained in:
commit
899aede629
@ -104,7 +104,11 @@ func ParsePackagesFromDir(dirpath string) {
|
|||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
if !strings.Contains(fpath, "vendor") && !strings.Contains(fpath, "tests") {
|
// 7 is length of 'vendor' (6) + length of file path separator (1)
|
||||||
|
// so we skip dir 'vendor' which is directly under dirpath
|
||||||
|
if !(len(fpath) == len(dirpath)+7 && strings.HasSuffix(fpath, "vendor")) &&
|
||||||
|
!strings.Contains(fpath, "tests") &&
|
||||||
|
!(len(fpath) > len(dirpath) && fpath[len(dirpath)+1] == '.') {
|
||||||
err = parsePackageFromDir(fpath)
|
err = parsePackageFromDir(fpath)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
// Send the error to through the channel and continue walking
|
// Send the error to through the channel and continue walking
|
||||||
|
Loading…
Reference in New Issue
Block a user