mirror of
https://github.com/containers/podman.git
synced 2025-12-07 14:20:44 +08:00
vendor: update buildah to latest main
Includes one breaking change for the flag as BuildOutputs now accept a slice. Signed-off-by: Paul Holzinger <pholzing@redhat.com>
This commit is contained in:
4
vendor/github.com/containers/buildah/copier/syscall_windows.go
generated
vendored
4
vendor/github.com/containers/buildah/copier/syscall_windows.go
generated
vendored
@@ -77,6 +77,10 @@ func lutimes(isSymlink bool, path string, atime, mtime time.Time) error {
|
||||
return windows.UtimesNano(path, []windows.Timespec{windows.NsecToTimespec(atime.UnixNano()), windows.NsecToTimespec(mtime.UnixNano())})
|
||||
}
|
||||
|
||||
func owner(info os.FileInfo) (int, int, error) {
|
||||
return -1, -1, syscall.ENOSYS
|
||||
}
|
||||
|
||||
// sameDevice returns true since we can't be sure that they're not on the same device
|
||||
func sameDevice(a, b os.FileInfo) bool {
|
||||
return true
|
||||
|
||||
Reference in New Issue
Block a user