mirror of
https://github.com/docker/cli.git
synced 2026-01-16 20:22:36 +03:00
Signed-off-by: John Howard <jhoward@microsoft.com> Upstream-commit: 010e3e046b3d31ab69f37dfb504551fe5042d84a Component: engine
9 lines
176 B
Go
9 lines
176 B
Go
// +build windows
|
|
|
|
package builder
|
|
|
|
func fixPermissions(source, destination string, uid, gid int, destExisted bool) error {
|
|
// chown is not supported on Windows
|
|
return nil
|
|
}
|