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