Skip to content

Commit 093646c

Browse files
committed
Remove the --kind dil options from decompile command
This option is not recognized.
1 parent d8ab857 commit 093646c

File tree

1 file changed

+1
-1
lines changed
  • extensions/ql-vscode/src

1 file changed

+1
-1
lines changed

extensions/ql-vscode/src/cli.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -673,7 +673,7 @@ export class CodeQLCliServer implements Disposable {
673673
async generateDil(qloFile: string, outFile: string): Promise<void> {
674674
await this.runCodeQlCliCommand(
675675
['query', 'decompile'],
676-
['--kind', 'dil', '-o', outFile, qloFile],
676+
['-o', outFile, qloFile],
677677
'Generating DIL',
678678
);
679679
}

0 commit comments

Comments
 (0)