mirror of
https://github.com/podman-container-tools/podman.git
synced 2026-08-05 00:15:44 +00:00
This PR reflects the upstream change of moving the buildah module from github.com/containers/buildah to go.podman.io/buildah. Signed-off-by: Brent Baude <bbaude@redhat.com>
15 lines
260 B
Go
15 lines
260 B
Go
//go:build !linux && !netbsd && !freebsd && !darwin
|
|
|
|
package copier
|
|
|
|
const (
|
|
xattrsSupported = false
|
|
)
|
|
|
|
func Lgetxattrs(path string) (map[string]string, error) {
|
|
return nil, nil
|
|
}
|
|
|
|
func Lsetxattrs(path string, xattrs map[string]string) error {
|
|
return nil
|
|
}
|