1
0
mirror of https://github.com/actions/checkout.git synced 2026-07-11 19:23:49 +08:00

Compare commits

..

1 Commits

Author SHA1 Message Date
copilot-swe-agent[bot]
8da04f86f4 Initial plan 2026-03-13 21:33:07 +00:00
2 changed files with 2 additions and 8 deletions

5
dist/index.js vendored
View File

@@ -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() {

View File

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