mirror of https://github.com/actions/toolkit
Fix lint issues
parent
cf3dd065b8
commit
a9d266bb7c
|
@ -71,7 +71,10 @@ export async function unlinkFile(filePath: fs.PathLike): Promise<void> {
|
||||||
return util.promisify(fs.unlink)(filePath)
|
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 = ''
|
let versionOutput = ''
|
||||||
additionalArgs.push('--version')
|
additionalArgs.push('--version')
|
||||||
core.debug(`Checking ${app} ${additionalArgs.join(' ')}`)
|
core.debug(`Checking ${app} ${additionalArgs.join(' ')}`)
|
||||||
|
|
Loading…
Reference in New Issue