Fix file extension of generated query suite
See https://github.com/github/codeql-coreql-team/issues/452
This commit is contained in:
Родитель
7379f4996a
Коммит
4beead54be
|
@ -42,7 +42,9 @@ function nameOfKeyType(keyType: KeyType): string {
|
|||
}
|
||||
|
||||
async function resolveQueries(cli: CodeQLCliServer, qlpack: string, keyType: KeyType): Promise<string[]> {
|
||||
const suiteFile = (await tmp.file()).path;
|
||||
const suiteFile = (await tmp.file({
|
||||
postfix: '.qls'
|
||||
})).path;
|
||||
const suiteYaml = { qlpack, include: { kind: 'definitions', 'tags contain': tagOfKeyType(keyType) } };
|
||||
await fs.writeFile(suiteFile, yaml.safeDump(suiteYaml), 'utf8');
|
||||
|
||||
|
|
Загрузка…
Ссылка в новой задаче