Files
podman/pkg/bindings/images/build_windows.go
Daniel J Walsh f22791aec7 Handle hard links in remote builds
Fixes: https://github.com/containers/podman/issues/9893

Signed-off-by: Daniel J Walsh <dwalsh@redhat.com>
2021-05-22 05:27:03 -04:00

10 lines
112 B
Go

package images
import (
"os"
)
func checkHardLink(fi os.FileInfo) (devino, bool) {
return devino{}, false
}