Integration tests should take .stfolder into account when comparing dirs

This commit is contained in:
Jakob Borg
2014-10-15 09:53:49 +02:00
parent aaf625c624
commit 8a674c8bc3
3 changed files with 5 additions and 5 deletions

View File

@@ -324,7 +324,7 @@ func startWalker(dir string, res chan<- fileInfo, abort <-chan struct{}) {
}
rn, _ := filepath.Rel(dir, path)
if rn == "." {
if rn == "." || rn == ".stfolder" {
return nil
}