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:
Todd Gamblin 2015-12-14 21:17:10 -08:00
commit dc3b54a681

View File

@ -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