spack remove: fix traversal when user specs intersect (#37882)
drop unnecessary double loop over the matching user specs.
This commit is contained in:
parent
0052f330be
commit
f2d3818d5c
@ -1221,7 +1221,8 @@ def remove(self, query_spec, list_name=user_speclist_name, force=False):
|
|||||||
old_specs = set(self.user_specs)
|
old_specs = set(self.user_specs)
|
||||||
new_specs = set()
|
new_specs = set()
|
||||||
for spec in matches:
|
for spec in matches:
|
||||||
if spec in list_to_change:
|
if spec not in list_to_change:
|
||||||
|
continue
|
||||||
try:
|
try:
|
||||||
list_to_change.remove(spec)
|
list_to_change.remove(spec)
|
||||||
self.update_stale_references(list_name)
|
self.update_stale_references(list_name)
|
||||||
@ -1238,11 +1239,9 @@ def remove(self, query_spec, list_name=user_speclist_name, force=False):
|
|||||||
tty.warn(msg)
|
tty.warn(msg)
|
||||||
else:
|
else:
|
||||||
if list_name == user_speclist_name:
|
if list_name == user_speclist_name:
|
||||||
for user_spec in matches:
|
self.manifest.remove_user_spec(str(spec))
|
||||||
self.manifest.remove_user_spec(str(user_spec))
|
|
||||||
else:
|
else:
|
||||||
for user_spec in matches:
|
self.manifest.remove_definition(str(spec), list_name=list_name)
|
||||||
self.manifest.remove_definition(str(user_spec), list_name=list_name)
|
|
||||||
|
|
||||||
# If force, update stale concretized specs
|
# If force, update stale concretized specs
|
||||||
for spec in old_specs - new_specs:
|
for spec in old_specs - new_specs:
|
||||||
|
Loading…
Reference in New Issue
Block a user