Add a missing space.

This commit is contained in:
Chris Gavin 2020-07-27 11:06:36 +01:00
parent 74b4d8a6db
commit 5587e128ff
No known key found for this signature in database
GPG key ID: 07F950B80C27E4DA
2 changed files with 2 additions and 2 deletions

File diff suppressed because one or more lines are too long

View file

@ -147,7 +147,7 @@ async function getCodeQLBundleDownloadURL(): Promise<string> {
// We have to download CodeQL manually because the toolcache doesn't support Accept headers.
// This can be removed once https://github.com/actions/toolkit/pull/530 is merged and released.
async function toolcacheDownloadTool(url:string, headers?: IHeaders): Promise<string> {
async function toolcacheDownloadTool(url: string, headers?: IHeaders): Promise<string> {
const client = new http.HttpClient('CodeQL Action');
const dest = path.join(util.getRequiredEnvParam('RUNNER_TEMP'), uuidV4());
const response: http.HttpClientResponse = await client.get(url, headers);