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

Fixed a bug which caused 'docker cp' to fail when the destination name already exists.

This commit is contained in:
Solomon Hykes 2013-01-28 23:17:47 -08:00
parent d8a4910eee
commit 49da84d7c4

View file

@ -141,9 +141,6 @@ func (index *Index) Copy(srcNameOrId, dstName string) (*Image, error) {
if src == nil {
return nil, errors.New("No such image: " + srcNameOrId)
}
if index.Find(dstName) != nil {
return nil, errors.New(dstName + ": image already exists.")
}
dst, err := NewImage(dstName, src.Layers, src.Id)
if err != nil {
return nil, err