Skip to content

Commit

Permalink
Fix a line that's too long.
Browse files Browse the repository at this point in the history
  • Loading branch information
Chris Gavin committed Jun 23, 2020
1 parent 8823109 commit 107d8ff
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 3 deletions.
8 changes: 7 additions & 1 deletion lib/setup-tracer.js

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

2 changes: 1 addition & 1 deletion lib/setup-tracer.js.map

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

8 changes: 7 additions & 1 deletion src/setup-tracer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,13 @@ async function run() {
const languageDatabase = path.join(databaseFolder, language);

// Init language database
await exec.exec(codeqlSetup.cmd, ['database', 'init', languageDatabase, '--language=' + language, '--source-root=' + sourceRoot]);
await exec.exec(codeqlSetup.cmd, [
'database',
'init',
languageDatabase,
'--language=' + language,
'--source-root=' + sourceRoot,
]);
// TODO: add better detection of 'traced languages' instead of using a hard coded list
if (['cpp', 'java', 'csharp'].includes(language)) {
const config: TracerConfig = await tracerConfig(codeqlSetup, languageDatabase);
Expand Down

0 comments on commit 107d8ff

Please sign in to comment.