mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
705bf07f05
* Update dependencies to match moby master; add new sub-dependencies as necessary. * Update moby to latest * Update gocapability This moves gocapability beyond the version vendored in moby; presumably the code which requires this particular version is not used in moby and is removed by vndr. Moby will need to be updated as well. Signed-off-by: Euan Harris <euan.harris@docker.com>
7 lines
202 B
Go
7 lines
202 B
Go
// +build !go1.9
|
|
|
|
package hcsshim
|
|
|
|
// Due to a bug in go1.8 and before, directory reparse points need to be skipped
|
|
// during filepath.Walk. This is fixed in go1.9
|
|
var shouldSkipDirectoryReparse = true
|