ab35df454d
Removed pre-go1.17 build-tags with go fix; go mod init go fix -mod=readonly ./... rm go.mod Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
11 lines
223 B
Go
11 lines
223 B
Go
//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"
|
|
)
|