Vendor in latest opencontainers/runtime-tools

Signed-off-by: Dan Walsh <dwalsh@redhat.com>
This commit is contained in:
Dan Walsh 2017-06-22 13:32:14 -04:00
parent 7cb47aeb21
commit a9a1b04510
4 changed files with 26 additions and 5 deletions

View file

@ -17,6 +17,13 @@ func (g *Generator) initSpecAnnotations() {
}
}
func (g *Generator) initSpecHooks() {
g.initSpec()
if g.spec.Hooks == nil {
g.spec.Hooks = &rspec.Hooks{}
}
}
func (g *Generator) initSpecLinux() {
g.initSpec()
if g.spec.Linux == nil {