Compare commits

...

2 Commits

Author SHA1 Message Date
Nishant Sikarwar
e6051b0754
Merge b800b38ab2b6b498c12cb66cc1caddb94b00a157 into 3b9b8c884f6b4bb4d5be2779c26374abadae0871 2024-11-13 21:44:04 +05:30
Nishant Sikarwar
b800b38ab2
removed aliasing of 'this' to local variable 2023-01-02 06:53:21 +00:00

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)
})
}