Fixed push bug

Upstream-commit: c6dc90ccb9a77dab9f40c13be7465a759a25885b
Component: engine
This commit is contained in:
shin-
2013-09-11 19:39:33 +02:00
parent 69cd7cd278
commit f64d317995

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
}
}
}
}