mirror of
https://github.com/podman-container-tools/podman.git
synced 2026-08-26 18:27:53 +00:00
podman save uses named pipe as output path, not directly using /dev/stdout. fix #7017 Signed-off-by: Qi Wang <qiwan@redhat.com>
7 lines
124 B
Go
7 lines
124 B
Go
// +build !linux
|
|
|
|
package images
|
|
|
|
func setupPipe() (string, func() <-chan error, error) {
|
|
return "/dev/stdout", nil, nil
|
|
}
|