mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2024-11-26 11:51:02 +00:00
Fix for «undefined: "github.com/dotcloud/docker/utils".StdCopy»
Seems like StdCopy moved to own package. Closes #471
This commit is contained in:
parent
9743533fed
commit
2acf867140
1 changed files with 2 additions and 1 deletions
|
@ -14,6 +14,7 @@ import (
|
|||
"strings"
|
||||
|
||||
"github.com/dotcloud/docker/pkg/term"
|
||||
"github.com/dotcloud/docker/pkg/stdcopy"
|
||||
"github.com/dotcloud/docker/utils"
|
||||
)
|
||||
|
||||
|
@ -208,7 +209,7 @@ func (c *Client) hijack(method, path string, setRawTerminal bool, out io.Writer)
|
|||
if setRawTerminal {
|
||||
_, err = io.Copy(out, br)
|
||||
} else {
|
||||
_, err = utils.StdCopy(out, out, br)
|
||||
_, err = stdcopy.StdCopy(out, out, br)
|
||||
}
|
||||
|
||||
errStdout <- err
|
||||
|
|
Loading…
Reference in a new issue