aboutsummaryrefslogtreecommitdiff
path: root/vendor/github.com/projectatomic/buildah/run_unsupport.go
blob: 4824a0c4eeca078dfff17c06b2743b0fe5b5abb1 (plain)
1
2
3
4
5
6
7
8
9
10
11
// +build !linux

package buildah

import (
	"github.com/pkg/errors"
)

func setChildProcess() error {
	return errors.New("function not supported on non-linux systems")
}