podman-build/pkg/domain/infra/abi/play_unsupported.go
2025-10-11 12:30:35 +09:00

14 lines
284 B
Go

//go:build !linux && !remote
package abi
import (
"errors"
"os"
)
// openSymlinkPath is not supported on this platform.
func openSymlinkPath(root *os.File, unsafePath string, flags int) (*os.File, error) {
return nil, errors.New("cannot safely open symlink on this platform")
}