github.com/wulonghui/docker@v1.8.0-rc2/builder/internals_windows.go (about)

     1  // +build windows
     2  
     3  package builder
     4  
     5  func fixPermissions(source, destination string, uid, gid int, destExisted bool) error {
     6  	// chown is not supported on Windows
     7  	return nil
     8  }