mirror of https://github.com/actions/checkout.git
Merge b800b38ab2 into c2d88d3ecc
commit
f78d20508b
|
|
@ -313,9 +313,8 @@ class GitCommandManager {
|
|||
args.push(arg)
|
||||
}
|
||||
|
||||
const that = this
|
||||
await retryHelper.execute(async () => {
|
||||
await that.execGit(args)
|
||||
await this.execGit(args)
|
||||
})
|
||||
}
|
||||
|
||||
|
|
@ -382,9 +381,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)
|
||||
})
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue