mirror of
https://github.com/containers/podman.git
synced 2025-06-19 08:09:12 +08:00

Switch from projectatomic/buildah to containers/buildah Signed-off-by: Daniel J Walsh <dwalsh@redhat.com>
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")
|
|
}
|