Merge pull request 'small fix for helper' (#698) from mueller/small-helper-script-fix into development

Reviewed-on: fsfw/fsfw#698
This commit is contained in:
Steffen Gaisser 2022-10-10 14:43:59 +02:00
commit 32c12b3dbf
1 changed files with 1 additions and 1 deletions

View File

@ -199,7 +199,7 @@ def check_for_cmake_build_dir(build_dir_list: list) -> list:
def perform_lcov_operation(directory: str, chdir: bool):
if chdir:
os.chdir(directory)
cmd_runner("cmake --build . -- fsfw-tests_coverage -j")
cmd_runner("cmake --build . -j -- fsfw-tests_coverage")
def determine_build_dir(build_dir_list: List[str]):