mirror of
https://github.com/actions/checkout.git
synced 2026-07-11 19:23:49 +08:00
Compare commits
1 Commits
9bb1b03182
...
copilot/re
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
8da04f86f4 |
5
dist/index.js
vendored
5
dist/index.js
vendored
@@ -990,10 +990,7 @@ class GitCommandManager {
|
||||
if (recursive) {
|
||||
args.push('--recursive');
|
||||
}
|
||||
const that = this;
|
||||
yield retryHelper.execute(() => __awaiter(this, void 0, void 0, function* () {
|
||||
yield that.execGit(args);
|
||||
}));
|
||||
yield this.execGit(args);
|
||||
});
|
||||
}
|
||||
submoduleStatus() {
|
||||
|
||||
@@ -457,10 +457,7 @@ class GitCommandManager {
|
||||
args.push('--recursive')
|
||||
}
|
||||
|
||||
const that = this
|
||||
await retryHelper.execute(async () => {
|
||||
await that.execGit(args)
|
||||
})
|
||||
await this.execGit(args)
|
||||
}
|
||||
|
||||
async submoduleStatus(): Promise<boolean> {
|
||||
|
||||
Reference in New Issue
Block a user