Files
podman/vendor/github.com/containers/buildah/util/util_windows.go
Paul Holzinger 2c2299ad85 bump buildah to latest
Also includes a small change to make us of
https://github.com/containers/buildah/pull/5039

Signed-off-by: Paul Holzinger <pholzing@redhat.com>
2023-09-14 11:20:48 +02:00

17 lines
174 B
Go

//go:build !linux && !darwin
// +build !linux,!darwin
package util
import (
"os"
)
func UID(st os.FileInfo) int {
return 0
}
func GID(st os.FileInfo) int {
return 0
}