This commit is contained in:
Nishant Sikarwar 2024-09-06 09:16:35 +05:30 committed by GitHub
commit f658780d0b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -289,9 +289,8 @@ class GitCommandManager {
args.push(arg)
}
const that = this
await retryHelper.execute(async () => {
await that.execGit(args)
await this.execGit(args)
})
}
@ -343,9 +342,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)
})
}