1
0
mirror of https://github.com/openSUSE/osc.git synced 2024-12-26 01:46:13 +01:00

- core.Project: fixed update method

handle missing packages (state "!") more gracefully
This commit is contained in:
Marcus Huewe 2011-08-25 13:43:58 +02:00
parent da52ea1331
commit fc00d2621c

View File

@ -672,6 +672,7 @@ class Project:
upstream_del = [ pac for pac in self.pacs_have if not pac in self.pacs_available and self.get_state(pac) != 'A']
for pac in upstream_del:
if self.status(pac) != '!':
p = Package(os.path.join(self.dir, pac))
self.delPackage(p, force = True)
delete_storedir(p.storedir)