Skip to content

Commit

Permalink
Add a missing space.
Browse files Browse the repository at this point in the history
  • Loading branch information
Chris Gavin committed Jul 27, 2020
1 parent 74b4d8a commit 5587e12
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/codeql.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src/codeql.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit 5587e12

Please sign in to comment.