1
0
Fork 0
mirror of https://github.com/moby/moby.git synced 2022-11-09 12:21:53 -05:00

Merge pull request #3113 from shykes/engine-export

Move 'docker export' to the engine API
This commit is contained in:
Victor Vieux 2013-12-10 13:28:24 -08:00
commit 0025e9bd71
3 changed files with 24 additions and 12 deletions

View file

@ -113,7 +113,6 @@ func (eng *Engine) Job(name string, args ...string) *Job {
Stderr: NewOutput(),
env: &Env{},
}
job.Stdout.Add(utils.NopWriteCloser(eng.Stdout))
job.Stderr.Add(utils.NopWriteCloser(eng.Stderr))
handler, exists := eng.handlers[name]
if exists {