Merge pull request #24 from MagnusS/fix-build

Don't exit after pulling init or kernel image without -pull
This commit is contained in:
Justin Cormack 2017-05-08 20:14:03 +01:00 committed by GitHub
commit a1b24b4de2

View File

@ -114,9 +114,9 @@ func imageTar(image, prefix string, tw *tar.Writer, trust bool, pull bool) error
if err != nil {
return fmt.Errorf("Failed to docker create image %s: %v", image, err)
}
}
} else {
return fmt.Errorf("Failed to create docker image %s: %v", image, err)
}
}
contents, err := dockerExport(container)
if err != nil {