3
0
Fork 0
mirror of https://code.forgejo.org/actions/checkout.git synced 2026-02-03 09:36:16 +00:00
This commit is contained in:
Nishant Sikarwar 2026-01-27 15:37:50 +05:30 committed by GitHub
commit caecee789e
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -311,9 +311,8 @@ class GitCommandManager {
args.push(arg)
}
const that = this
await retryHelper.execute(async () => {
await that.execGit(args)
await this.execGit(args)
})
}
@ -380,9 +379,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)
})
}