Merge b800b38ab2b6b498c12cb66cc1caddb94b00a157 into 72f2cec99f417b1a1c5e2e88945068983b7965f9

This commit is contained in:
Nishant Sikarwar 2023-09-09 22:20:33 +02:00 committed by GitHub
commit d63b63f9db
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

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