Compare commits

...

2 Commits

Author SHA1 Message Date
Nishant Sikarwar
caecee789e
Merge b800b38ab2 into 0c366fd6a8 2026-01-27 15:37:50 +05:30
Nishant Sikarwar
b800b38ab2
removed aliasing of 'this' to local variable 2023-01-02 06:53:21 +00:00

View File

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