mirror of
https://github.com/containers/podman.git
synced 2025-12-04 04:09:40 +08:00
12 lines
171 B
Go
12 lines
171 B
Go
// +build !linux
|
|
|
|
package buildah
|
|
|
|
import (
|
|
"github.com/pkg/errors"
|
|
)
|
|
|
|
func setChildProcess() error {
|
|
return errors.New("function not supported on non-linux systems")
|
|
}
|