diff --git a/execution/executors/oci/io.go b/execution/executors/oci/io.go index 8212d2b..2163f1c 100644 --- a/execution/executors/oci/io.go +++ b/execution/executors/oci/io.go @@ -49,13 +49,5 @@ func (o OIO) cleanup() { if o.master != nil { o.master.Close() } - if o.rio.Stdin != nil { - o.rio.Stdin.(*os.File).Close() - } - if o.rio.Stdout != nil { - o.rio.Stdout.(*os.File).Close() - } - if o.rio.Stderr != nil { - o.rio.Stderr.(*os.File).Close() - } + o.rio.Close() }