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:
Steve Martinelli
2016-03-09 04:32:20 -05:00
parent 2659f12a20
commit bd8da28abd

View File

@@ -102,9 +102,11 @@ def find_duplicates():
overlap_cmds = _check_command_overlap(valid_cmds) overlap_cmds = _check_command_overlap(valid_cmds)
if overlap_cmds: if overlap_cmds:
print("Some commands overlap...") print("WARNING: Some commands overlap...")
print(overlap_cmds) 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 # Safely return False here with the full set of commands
print("Final set of commands...") print("Final set of commands...")