mirror of https://github.com/actions/toolkit
Fix linting
parent
4abb5a2ae0
commit
1d61e5fb19
|
@ -1,9 +1,9 @@
|
|||
import crypto from 'crypto'
|
||||
import { promises as fs } from 'fs'
|
||||
import { IncomingHttpHeaders, OutgoingHttpHeaders } from 'http'
|
||||
import { debug, info, warning } from '@actions/core'
|
||||
import { HttpCodes, HttpClient, HttpClientResponse } from '@actions/http-client'
|
||||
import { BearerCredentialHandler } from '@actions/http-client/lib/auth'
|
||||
import {promises as fs} from 'fs'
|
||||
import {IncomingHttpHeaders, OutgoingHttpHeaders} from 'http'
|
||||
import {debug, info, warning} from '@actions/core'
|
||||
import {HttpCodes, HttpClient, HttpClientResponse} from '@actions/http-client'
|
||||
import {BearerCredentialHandler} from '@actions/http-client/lib/auth'
|
||||
import {
|
||||
getRuntimeToken,
|
||||
getRuntimeUrl,
|
||||
|
@ -275,10 +275,9 @@ export async function rmFile(filePath: string): Promise<void> {
|
|||
// download-http-client.ts#L151 no longer creates a file and we fail here
|
||||
try {
|
||||
await fs.stat(filePath)
|
||||
}
|
||||
catch (e) {
|
||||
console.log("File does not exist.");
|
||||
return;
|
||||
} catch (e) {
|
||||
// File does not exist
|
||||
return
|
||||
}
|
||||
await fs.unlink(filePath)
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue