зеркало из https://github.com/microsoft/docker.git
9 строки
182 B
Go
9 строки
182 B
Go
|
// +build windows
|
||
|
|
||
|
package daemonbuilder
|
||
|
|
||
|
func fixPermissions(source, destination string, uid, gid int, destExisted bool) error {
|
||
|
// chown is not supported on Windows
|
||
|
return nil
|
||
|
}
|