From 49dea06037e1254a1dbe0064942e7329079388ec Mon Sep 17 00:00:00 2001 From: Qi Wang Date: Thu, 23 Jul 2020 15:54:12 -0400 Subject: podman save use named pipe podman save uses named pipe as output path, not directly using /dev/stdout. fix #7017 Signed-off-by: Qi Wang --- cmd/podman/images/utils_unsupported.go | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 cmd/podman/images/utils_unsupported.go (limited to 'cmd/podman/images/utils_unsupported.go') diff --git a/cmd/podman/images/utils_unsupported.go b/cmd/podman/images/utils_unsupported.go new file mode 100644 index 000000000..69d1df786 --- /dev/null +++ b/cmd/podman/images/utils_unsupported.go @@ -0,0 +1,7 @@ +// +build !linux + +package images + +func setupPipe() (string, func() <-chan error, error) { + return "/dev/stdout", nil, nil +} -- cgit v1.2.3-54-g00ecf