mirror of
https://github.com/containers/podman.git
synced 2025-12-02 19:28:58 +08:00
build a podman-remote binary for windows that allows users to use the remote client on windows and interact with podman on linux system. Signed-off-by: baude <bbaude@redhat.com>
21 lines
486 B
Go
21 lines
486 B
Go
// +build !linux
|
|
|
|
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")
|
|
}
|