Skip to content

Commit

Permalink
fix(git): set submodule.recurse=true (#26076)
Browse files Browse the repository at this point in the history
  • Loading branch information
viceice authored Dec 1, 2023
1 parent 383bc11 commit 181c52f
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions lib/util/git/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -350,6 +350,7 @@ export async function cloneSubmodules(shouldClone: boolean): Promise<void> {
}
submodulesInitizialized = true;
await syncGit();
await git.addConfig('submodule.recurse', 'true');
const submodules = await getSubmodules();
for (const submodule of submodules) {
try {
Expand Down

0 comments on commit 181c52f

Please sign in to comment.