This commit is contained in:
Allen Blaylock
2024-11-08 15:29:31 -10:00
committed by GitHub
2 changed files with 8 additions and 2 deletions

View File

@@ -420,7 +420,10 @@ class GitCommandManager {
args.push('--recursive')
}
await this.execGit(args)
const that = this
await retryHelper.execute(async () => {
await that.execGit(args)
})
}
async submoduleStatus(): Promise<boolean> {