mirror of
https://github.com/restic/restic.git
synced 2025-08-23 16:08:04 +00:00
run_tests: Do not ignore subdirs of empty dirs
This commit is contained in:
@@ -144,10 +144,14 @@ func main() {
|
||||
return nil
|
||||
}
|
||||
|
||||
if specialDir(p) || emptyDir(p) {
|
||||
if specialDir(p) {
|
||||
return filepath.SkipDir
|
||||
}
|
||||
|
||||
if emptyDir(p) {
|
||||
return nil
|
||||
}
|
||||
|
||||
return testPackage(forceRelativeDirname(p), file)
|
||||
})
|
||||
|
||||
|
Reference in New Issue
Block a user