Merge b800b38ab2b6b498c12cb66cc1caddb94b00a157 into 9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0

This commit is contained in:
Nishant Sikarwar 2026-06-19 12:35:04 +05:30 committed by GitHub
commit 3588555318
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -311,9 +311,8 @@ class GitCommandManager {
args.push(arg)
}
const that = this
await retryHelper.execute(async () => {
await that.execGit(args)
await this.execGit(args)
})
}
@ -386,9 +385,8 @@ class GitCommandManager {
async lfsFetch(ref: string): Promise<void> {
const args = ['lfs', 'fetch', 'origin', ref]
const that = this
await retryHelper.execute(async () => {
await that.execGit(args)
await this.execGit(args)
})
}