Fix generated file.

Signed-off-by: Jintao Zhang <zhangjintao9020@gmail.com>
This commit is contained in:
Jintao Zhang
2018-09-25 19:50:58 +08:00
parent db92a0d8b1
commit ed7b63b554
2 changed files with 4 additions and 27 deletions

File diff suppressed because one or more lines are too long

View File

@@ -171,7 +171,7 @@ func (nh *nodeHandle) CombinedOutputLines(command string, args ...string) ([]str
func (nh *nodeHandle) CopyTo(source, dest string) error {
cmd := exec.Command("docker", "cp")
cmd.Args = append(cmd.Args,
source, // from the source file
source, // from the source file
nh.nameOrID+":"+dest, // to the node, at dest
)
cmd.InheritOutput = true