]> git.immae.eu Git - github/fretlink/terraform-provider-statuscake.git/blob - vendor/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/pkg/system/umask_windows.go
provider: Ensured Go 1.11 in TravisCI and README
[github/fretlink/terraform-provider-statuscake.git] / vendor / github.com / fsouza / go-dockerclient / external / github.com / docker / docker / pkg / system / umask_windows.go
1 // +build windows
2
3 package system
4
5 // Umask is not supported on the windows platform.
6 func Umask(newmask int) (oldmask int, err error) {
7 // should not be called on cli code path
8 return 0, ErrNotSupportedPlatform
9 }