Fix #206: need to make deps AND root concrete when read in.
This commit is contained in:
parent
3d39d035c1
commit
6e074a196a
1 changed files with 4 additions and 2 deletions
|
@ -212,8 +212,10 @@ def read_spec(self, path):
|
|||
spec = Spec.from_yaml(f)
|
||||
|
||||
# Specs read from actual installations are always concrete
|
||||
spec._normal = True
|
||||
spec._concrete = True
|
||||
for s in spec.traverse():
|
||||
s._normal = True
|
||||
s._concrete = True
|
||||
|
||||
return spec
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue