0
1
Fork 0
This commit is contained in:
Nishant Sikarwar 2024-03-21 00:52:22 +01:00 committed by GitHub
commit 49d98b68fc
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 4 deletions

View File

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