Compare commits

...

2 Commits

Author SHA1 Message Date
Nishant Sikarwar
92c01a766d
Merge b800b38ab2b6b498c12cb66cc1caddb94b00a157 into 163217dfcd28294438ea1c1c149cfaf66eec283e 2024-10-20 00:14:26 +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)
})
}