1
0
Fork 0
mirror of https://github.com/actions/checkout.git synced 2025-03-28 11:00:05 +01:00

lint: format

This commit is contained in:
Hazel 2024-01-03 14:42:53 +00:00
parent da844dd131
commit de8b6b8a2f
No known key found for this signature in database
GPG key ID: C7C5A3D1A085B70F

View file

@ -471,7 +471,10 @@ class GitCommandManager {
}
async tryReset(): Promise<boolean> {
const output = await this.execGit(['reset', '--hard', '--recurse-submodules', 'HEAD'], true)
const output = await this.execGit(
['reset', '--hard', '--recurse-submodules', 'HEAD'],
true
)
return output.exitCode === 0
}