Compare commits

...

2 commits

Author SHA1 Message Date
Nishant Sikarwar
878b21d595
Merge b800b38ab2 into cbb722410c 2024-11-15 10:02:41 +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)
})
}