1// +build go1.9
2
3package hcsshim
4
5// Due to a bug in go1.8 and before, directory reparse points need to be skipped
6// during filepath.Walk. This is fixed in go1.9
7var shouldSkipDirectoryReparse = false
8