mirror of
https://github.com/clearlinux/docker.git
synced 2026-04-28 19:03:38 +00:00
12 lines
222 B
Go
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"
|
|
)
|