mirror of
https://github.com/containers/skopeo.git
synced 2025-09-25 20:29:24 +00:00
15 lines
273 B
Go
15 lines
273 B
Go
// +build windows
|
|
|
|
package graphdriver
|
|
|
|
import (
|
|
"os"
|
|
"syscall"
|
|
|
|
"github.com/containers/storage/pkg/idtools"
|
|
)
|
|
|
|
func platformLChown(path string, info os.FileInfo, toHost, toContainer *idtools.IDMappings) error {
|
|
return &os.PathError{"lchown", path, syscall.EWINDOWS}
|
|
}
|