mirror of
https://github.com/actions/checkout.git
synced 2026-06-19 18:57:20 +08:00
Merge b800b38ab2b6b498c12cb66cc1caddb94b00a157 into df4cb1c069e1874edd31b4311f1884172cec0e10
This commit is contained in:
commit
a8e37d41b3
@ -311,9 +311,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)
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -386,9 +385,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)
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user