Skip to content

Commit

Permalink
Add recursive flag to submodule update
Browse files Browse the repository at this point in the history
With the addition of tf-psa-crypto as a submodule, which itself has
framework as a submodule, git submodule calls now need to be recursive

Signed-off-by: Paul Elliott <[email protected]>
  • Loading branch information
paul-elliott-arm committed Dec 19, 2024
1 parent c15b488 commit 2da0cef
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion coverity/push_coverity_scan.py
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,8 @@ def build_mbedtls(logger: logging.Logger, mbedtls_dir: pathlib.Path, tools_dir:
check=True)
logger.log(logging.INFO, result.stdout.decode("utf-8"))

result = run(['git', 'submodule', 'update', '--init'], capture_output=True, check=True)
result = run(['git', 'submodule', 'update', '--init', '--recursive'], capture_output=True,
check=True)
logger.log(logging.INFO, result.stdout.decode("utf-8"))


Expand Down

0 comments on commit 2da0cef

Please sign in to comment.