Merge pull request #233 from LLNL/bugfix/206-value-error
Fix #206: need to make deps AND root concrete when read in.
This commit is contained in:
commit
dc3b54a681
@ -212,8 +212,10 @@ def read_spec(self, path):
|
|||||||
spec = Spec.from_yaml(f)
|
spec = Spec.from_yaml(f)
|
||||||
|
|
||||||
# Specs read from actual installations are always concrete
|
# Specs read from actual installations are always concrete
|
||||||
spec._normal = True
|
for s in spec.traverse():
|
||||||
spec._concrete = True
|
s._normal = True
|
||||||
|
s._concrete = True
|
||||||
|
|
||||||
return spec
|
return spec
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user