Files
docker-cli/components/engine/integration-cli/test_vars_windows.go
Mitch Capper 62b8050640 Change windows default permissions to 755 not 711, read access for all poses little security risk and prevents breaking existing Dockerfiles
Signed-off-by: Mitch Capper <mitch.capper@gmail.com>
Upstream-commit: b7dc9040f04fe8dacd2f14c6b93d1b0bb6bde333
Component: engine
2015-03-20 21:54:33 -07:00

12 lines
222 B
Go

// +build windows
package main
const (
// identifies if test suite is running on a unix platform
isUnixCli = false
// this is the expected file permission set on windows: gh#11395
expectedFileChmod = "-rwxr-xr-x"
)