mirror of
https://github.com/moby/moby.git
synced 2026-01-11 18:51:37 +00:00
pkg/stdcopy: fix missing alias for stdcopy.Systemerr
This was missed in 20d594fb79
Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
This commit is contained in:
@@ -13,9 +13,10 @@ import (
|
||||
type StdType = stdcopy.StdType
|
||||
|
||||
const (
|
||||
Stdin = stdcopy.Stdin // Deprecated: use [stdcopy.Stderr]. This alias will be removed in the next release.
|
||||
Stdout = stdcopy.Stdout // Deprecated: use [stdcopy.Stdout]. This alias will be removed in the next release.
|
||||
Stderr = stdcopy.Stderr // Deprecated: use [stdcopy.Stderr]. This alias will be removed in the next release.
|
||||
Stdin = stdcopy.Stdin // Deprecated: use [stdcopy.Stderr]. This alias will be removed in the next release.
|
||||
Stdout = stdcopy.Stdout // Deprecated: use [stdcopy.Stdout]. This alias will be removed in the next release.
|
||||
Stderr = stdcopy.Stderr // Deprecated: use [stdcopy.Stderr]. This alias will be removed in the next release.
|
||||
Systemerr = stdcopy.Systemerr // Deprecated: use [stdcopy.Systemerr]. This alias will be removed in the next release.
|
||||
)
|
||||
|
||||
// NewStdWriter instantiates a new Writer.
|
||||
|
||||
Reference in New Issue
Block a user