Fix bug getting specs from build caches (#9600)
This commit is contained in:
parent
75487dca44
commit
9b1690641b
1 changed files with 2 additions and 2 deletions
|
@ -581,7 +581,7 @@ def get_specs(force=False):
|
|||
if re.search("spec.yaml", link) and re.search(path, link):
|
||||
urls.add(link)
|
||||
|
||||
_cached_specs = set()
|
||||
_cached_specs = []
|
||||
for link in urls:
|
||||
with Stage(link, name="build_cache", keep=True) as stage:
|
||||
if force and os.path.exists(stage.save_filename):
|
||||
|
@ -597,7 +597,7 @@ def get_specs(force=False):
|
|||
# we need to mark this spec concrete on read-in.
|
||||
spec = spack.spec.Spec.from_yaml(f)
|
||||
spec._mark_concrete()
|
||||
_cached_specs.add(spec)
|
||||
_cached_specs.append(spec)
|
||||
|
||||
return _cached_specs
|
||||
|
||||
|
|
Loading…
Reference in a new issue