Skip to content

Commit

Permalink
EdkRepo: Ensure that recursive submodule init is completed.
Browse files Browse the repository at this point in the history
When no selective submodule initialization is present recursive
initialization should be completed.

Signed-off-by: Ashley E Desimone <[email protected]>
  • Loading branch information
ashedesimone committed Jun 27, 2024
1 parent dbcbb95 commit be0d087
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion project_utils/submodule.py
Original file line number Diff line number Diff line change
Expand Up @@ -310,7 +310,7 @@ def maintain_submodules(workspace, manifest, combo_name, verbose=False, cache_pa
if len(repo_subs) == 0:
_update(repo, None, verbose, cache_path=cache_path)
else:
_update(repo, repo_subs, verbose, cache_path=cache_path)
_update(repo, repo_subs, verbose, recursive=True, cache_path=cache_path)


if __name__ == '__main__':
Expand Down

0 comments on commit be0d087

Please sign in to comment.