mirror of
https://github.com/moby/moby.git
synced 2026-08-05 23:51:18 +00:00
12 lines
176 B
Go
12 lines
176 B
Go
//go:build !windows
|
|
// +build !windows
|
|
|
|
package main
|
|
|
|
const (
|
|
// identifies if test suite is running on a unix platform
|
|
isUnixCli = true
|
|
|
|
expectedFileChmod = "-rw-r--r--"
|
|
)
|