Files
podman/vendor/github.com/containers/buildah/chroot/pty_unsupported.go
Paul Holzinger eb28a1c084 update buildah and c/common to latest
also includes bumps for c/storage and c/image

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

14 lines
245 B
Go

//go:build !linux && !(freebsd && cgo)
// +build !linux
// +build !freebsd !cgo
package chroot
import (
"errors"
)
func getPtyDescriptors() (int, int, error) {
return -1, -1, errors.New("getPtyDescriptors not supported on this platform")
}