don't fail if commands overlap
the check for overlap commands is failing, we should warn instead of failing. Change-Id: Ide2ea41922ef3739152713401444a9881574824d
This commit is contained in:
parent
2659f12a20
commit
bd8da28abd
@ -102,9 +102,11 @@ def find_duplicates():
|
||||
|
||||
overlap_cmds = _check_command_overlap(valid_cmds)
|
||||
if overlap_cmds:
|
||||
print("Some commands overlap...")
|
||||
print("WARNING: Some commands overlap...")
|
||||
print(overlap_cmds)
|
||||
return True
|
||||
# FIXME(stevemar): when we determine why commands are overlapping
|
||||
# we can uncomment the line below.
|
||||
#return True
|
||||
|
||||
# Safely return False here with the full set of commands
|
||||
print("Final set of commands...")
|
||||
|
Loading…
x
Reference in New Issue
Block a user