0
0
Fork 0
mirror of https://github.com/actions/checkout.git synced 2025-03-31 06:59:25 +03:00
This commit is contained in:
Nishant Sikarwar 2025-01-17 09:18:15 +05:30 committed by GitHub
commit 90067efc66
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

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)
})
}