We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 9957b21 + 94ef752 commit a625a39Copy full SHA for a625a39
extensions/ql-vscode/src/legacy-query-server/run-queries.ts
@@ -54,7 +54,7 @@ export class QueryInProgress {
54
}
55
56
get compiledQueryPath() {
57
- return path.join(this.querySaveDir, 'compiledQuery.qlo');
+ return this.queryEvalInfo.compileQueryPath;
58
59
60
extensions/ql-vscode/src/run-queries-shared.ts
@@ -192,7 +192,7 @@ export class QueryEvaluationInfo {
192
if (await this.hasDil()) {
193
return this.dilPath;
194
195
- const compiledQuery = path.join(this.querySaveDir, 'compiledQuery.qlo');
+ const compiledQuery = this.compileQueryPath;
196
if (!(await fs.pathExists(compiledQuery))) {
197
if (await cliServer.cliConstraints.supportsNewQueryServer()) {
198
// This could be from the new query server
0 commit comments