|
|
@ -223,9 +223,8 @@ class GitCommandManager {
|
|
|
|
args.push(arg)
|
|
|
|
args.push(arg)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
const that = this
|
|
|
|
|
|
|
|
await retryHelper.execute(async () => {
|
|
|
|
await retryHelper.execute(async () => {
|
|
|
|
await that.execGit(args)
|
|
|
|
await this.execGit(args)
|
|
|
|
})
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
@ -277,9 +276,8 @@ class GitCommandManager {
|
|
|
|
async lfsFetch(ref: string): Promise<void> {
|
|
|
|
async lfsFetch(ref: string): Promise<void> {
|
|
|
|
const args = ['lfs', 'fetch', 'origin', ref]
|
|
|
|
const args = ['lfs', 'fetch', 'origin', ref]
|
|
|
|
|
|
|
|
|
|
|
|
const that = this
|
|
|
|
|
|
|
|
await retryHelper.execute(async () => {
|
|
|
|
await retryHelper.execute(async () => {
|
|
|
|
await that.execGit(args)
|
|
|
|
await this.execGit(args)
|
|
|
|
})
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|