summaryrefslogtreecommitdiff
path: root/vendor/github.com/projectatomic/buildah/chroot/unsupported.go
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/github.com/projectatomic/buildah/chroot/unsupported.go')
-rw-r--r--vendor/github.com/projectatomic/buildah/chroot/unsupported.go15
1 files changed, 0 insertions, 15 deletions
diff --git a/vendor/github.com/projectatomic/buildah/chroot/unsupported.go b/vendor/github.com/projectatomic/buildah/chroot/unsupported.go
deleted file mode 100644
index 5312c0024..000000000
--- a/vendor/github.com/projectatomic/buildah/chroot/unsupported.go
+++ /dev/null
@@ -1,15 +0,0 @@
-// +build !linux
-
-package chroot
-
-import (
- "io"
-
- "github.com/opencontainers/runtime-spec/specs-go"
- "github.com/pkg/errors"
-)
-
-// RunUsingChroot is not supported.
-func RunUsingChroot(spec *specs.Spec, bundlePath string, stdin io.Reader, stdout, stderr io.Writer) (err error) {
- return errors.Errorf("--isolation chroot is not supported on this platform")
-}