bugfix if both override and order is specified
This commit is contained in:
parent
4cca593071
commit
cfbc68aa11
3 changed files with 7 additions and 2 deletions
|
|
@ -189,7 +189,8 @@ class Emulator(object):
|
|||
def record_requirements(self):
|
||||
"""record requirements"""
|
||||
|
||||
if "CDIST_ORDER_DEPENDENCY" in self.env:
|
||||
# Inject the predecessor, but not if its an override (this would leed to an circular dependency)
|
||||
if "CDIST_ORDER_DEPENDENCY" in self.env and not 'CDIST_OVERRIDE' in self.env:
|
||||
# load object name created bevor this one from typeorder file ...
|
||||
with open(self.typeorder_path, 'r') as typecreationfile:
|
||||
typecreationorder = typecreationfile.readlines()
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue