mirror of
https://gitea.com/Lydanne/buildx.git
synced 2025-07-16 08:27:06 +08:00
migrate to github.com/moby/go-archive module
Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
This commit is contained in:
11
vendor/github.com/moby/go-archive/xattr_unsupported.go
generated
vendored
Normal file
11
vendor/github.com/moby/go-archive/xattr_unsupported.go
generated
vendored
Normal file
@ -0,0 +1,11 @@
|
||||
//go:build !linux && !darwin && !freebsd && !netbsd
|
||||
|
||||
package archive
|
||||
|
||||
func lgetxattr(path string, attr string) ([]byte, error) {
|
||||
return nil, nil
|
||||
}
|
||||
|
||||
func lsetxattr(path string, attr string, data []byte, flags int) error {
|
||||
return nil
|
||||
}
|
Reference in New Issue
Block a user