mirror of
https://github.com/actions/checkout.git
synced 2025-11-28 01:51:57 +02:00
Merge b800b38ab2 into c2d88d3ecc
This commit is contained in:
commit
f78d20508b
1 changed files with 2 additions and 4 deletions
|
|
@ -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…
Add table
Add a link
Reference in a new issue