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

Merge pull request #1857 from shin-/master

Fixed push bug
This commit is contained in:
Victor Vieux 2013-09-11 10:52:05 -07:00
commit d5480fb78d

View file

@ -772,7 +772,9 @@ func (srv *Server) pushRepository(r *registry.Registry, out io.Writer, localName
} else {
elem.Checksum = checksum
}
return pushTags()
if err := pushTags(); err != nil {
return err
}
}
}
}