[infra] Fix code coverage builder script (regressed after #2264).

This commit is contained in:
Max Moroz 2019-03-31 11:33:07 -07:00
parent e09485feab
commit 497cd398d0
1 changed files with 2 additions and 1 deletions

View File

@ -280,8 +280,9 @@ def main():
usage()
project_dir = sys.argv[1].rstrip(os.path.sep)
project_name = os.path.basename(project_dir)
steps = get_build_steps(project_dir)
build_project.run_build(steps, COVERAGE_BUILD_TAG)
build_project.run_build(steps, project_name, COVERAGE_BUILD_TAG)
if __name__ == "__main__":