12 lines
273 B
Go
12 lines
273 B
Go
//go:build windows
|
|
|
|
package app
|
|
|
|
import "os"
|
|
|
|
// Windows file metadata does not expose Unix UID/GID ownership. File mode is
|
|
// still preserved by atomicWrite; there is no ownership operation to perform.
|
|
func preserveOwnership(_ string, _ os.FileInfo) error {
|
|
return nil
|
|
}
|