This commit is contained in:
Nishant Sikarwar 2023-08-24 09:59:56 -07:00 committed by GitHub
commit 9c17dca9fc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

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