mirror of
https://github.com/containers/podman.git
synced 2025-09-26 16:25:00 +08:00
21 lines
494 B
Go
21 lines
494 B
Go
// +build !linux,!darwin
|
|
|
|
package buildah
|
|
|
|
import (
|
|
"github.com/pkg/errors"
|
|
)
|
|
|
|
func setChildProcess() error {
|
|
return errors.New("function not supported on non-linux systems")
|
|
}
|
|
|
|
func runUsingRuntimeMain() {}
|
|
|
|
func (b *Builder) Run(command []string, options RunOptions) error {
|
|
return errors.New("function not supported on non-linux systems")
|
|
}
|
|
func DefaultNamespaceOptions() (NamespaceOptions, error) {
|
|
return NamespaceOptions{}, errors.New("function not supported on non-linux systems")
|
|
}
|