Compare commits

...

2 commits

Author SHA1 Message Date
Allen Blaylock
e2b6712803
Merge 15b44f68ab into cbb722410c 2024-11-18 10:34:06 -05:00
Allen Blaylock
15b44f68ab Added retry to submodule cloning 2024-03-01 15:48:13 -07:00
2 changed files with 8 additions and 2 deletions

5
dist/index.js vendored
View file

@ -803,7 +803,10 @@ class GitCommandManager {
if (recursive) {
args.push('--recursive');
}
yield this.execGit(args);
const that = this;
yield retryHelper.execute(() => __awaiter(this, void 0, void 0, function* () {
yield that.execGit(args);
}));
});
}
submoduleStatus() {

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> {