blob: 5d9d35e3e04d599b8ca6c1d0931b4bf96e516a90 [file] [log] [blame]
// +build windows
package builder
func fixPermissions(source, destination string, uid, gid int, destExisted bool) error {
// chown is not supported on Windows
return nil
}