mirror of
https://github.com/actions/toolkit
synced 2025-05-09 08:33:00 +00:00
Fix lint issues
This commit is contained in:
parent
cf3dd065b8
commit
a9d266bb7c
1 changed files with 4 additions and 1 deletions
5
packages/cache/src/internal/cacheUtils.ts
vendored
5
packages/cache/src/internal/cacheUtils.ts
vendored
|
@ -71,7 +71,10 @@ export async function unlinkFile(filePath: fs.PathLike): Promise<void> {
|
|||
return util.promisify(fs.unlink)(filePath)
|
||||
}
|
||||
|
||||
async function getVersion(app: string, additionalArgs: string[] = []): Promise<string> {
|
||||
async function getVersion(
|
||||
app: string,
|
||||
additionalArgs: string[] = []
|
||||
): Promise<string> {
|
||||
let versionOutput = ''
|
||||
additionalArgs.push('--version')
|
||||
core.debug(`Checking ${app} ${additionalArgs.join(' ')}`)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue