Out with the old, in with the new Moby

- remove remainder of editions code
- add a new check container to run tests without Docker
- switch over `make test` to use new command to build tests

Signed-off-by: Justin Cormack <justin.cormack@docker.com>
This commit is contained in:
Justin Cormack 2017-03-06 21:25:11 +00:00
parent ed832e185f
commit 49002e7a1d

View File

@ -112,10 +112,10 @@ func (w *Writer) Write(b []byte) (n int, e error) {
}
// Close closes the writer
func (initrd *Writer) Close() error {
err1 := initrd.cw.Close()
err2 := initrd.gw.Close()
err3 := initrd.pw.Close()
func (w *Writer) Close() error {
err1 := w.cw.Close()
err2 := w.gw.Close()
err3 := w.pw.Close()
if err1 != nil {
return err1
}