1
0
mirror of https://github.com/actions/checkout.git synced 2026-03-04 08:41:01 +08:00

Compare commits

...

2 Commits

Author SHA1 Message Date
Nishant Sikarwar
166b64397f
Merge b800b38ab2 into 8e8c483db8 2025-12-18 20:47:31 +05:30
Nishant Sikarwar
b800b38ab2
removed aliasing of 'this' to local variable 2023-01-02 06:53:21 +00:00

View File

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