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
|
|
}
|