fix issue as 'all' can't be built
This commit is contained in:
parent
e357d584d7
commit
2264ff6c41
1 changed files with 1 additions and 1 deletions
|
@ -89,7 +89,7 @@ def _select_projects(config: Configuration, projects: str, repo_path: str) -> st
|
||||||
patch = repo.git.diff("HEAD~1")
|
patch = repo.git.diff("HEAD~1")
|
||||||
enabled_projects = ';'.join(cp.choose_projects(patch))
|
enabled_projects = ';'.join(cp.choose_projects(patch))
|
||||||
if enabled_projects is None or len(enabled_projects) == 0:
|
if enabled_projects is None or len(enabled_projects) == 0:
|
||||||
enabled_projects = 'all'
|
enabled_projects = cp.get_all_enabled_projects()
|
||||||
return enabled_projects
|
return enabled_projects
|
||||||
return projects
|
return projects
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue