Correctly skip project classification for utils/
`project` is a list here, not a string.
This commit is contained in:
parent
0522d2b402
commit
c47e555d0f
1 changed files with 2 additions and 1 deletions
|
@ -139,7 +139,8 @@ class ChooseProjects:
|
|||
unmapped_changes = False
|
||||
for changed_file in changed_files:
|
||||
project = changed_file.split('/', maxsplit=1)
|
||||
if project == 'utils':
|
||||
# There is no utils project.
|
||||
if project[0] == 'utils':
|
||||
continue
|
||||
if (project is None) or (project[0] not in self.all_projects):
|
||||
unmapped_changes = True
|
||||
|
|
Loading…
Reference in a new issue