mirror of
https://githubfast.com/actions/checkout.git
synced 2024-10-30 16:50:46 +00:00
Merge 15b44f68ab
into 8eb1f6a495
This commit is contained in:
commit
14961332c9
5
dist/index.js
vendored
5
dist/index.js
vendored
@ -792,7 +792,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() {
|
||||
|
@ -414,7 +414,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> {
|
||||
|
Loading…
Reference in New Issue
Block a user