Skip to content

Commit 77bffd5

Browse files
committed
Correct error messages to indicate ql pack storage path
1 parent e981530 commit 77bffd5

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

extensions/ql-vscode/src/skeleton-query-wizard.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -182,7 +182,7 @@ export class SkeletonQueryWizard {
182182

183183
private async determineNextFileName(folderName: string): Promise<string> {
184184
if (this.qlPackStoragePath === undefined) {
185-
throw new Error("Workspace storage path is undefined");
185+
throw new Error("QL Pack storage path is undefined");
186186
}
187187

188188
const folderUri = Uri.file(join(this.qlPackStoragePath, folderName));
@@ -196,7 +196,7 @@ export class SkeletonQueryWizard {
196196

197197
private async downloadDatabase() {
198198
if (this.qlPackStoragePath === undefined) {
199-
throw new Error("Workspace storage path is undefined");
199+
throw new Error("QL Pack storage path is undefined");
200200
}
201201

202202
if (this.databaseStoragePath === undefined) {
@@ -238,7 +238,7 @@ export class SkeletonQueryWizard {
238238
}
239239

240240
if (this.qlPackStoragePath === undefined) {
241-
throw new Error("Workspace storage path is undefined");
241+
throw new Error("QL Pack storage path is undefined");
242242
}
243243

244244
const databaseNwo = QUERY_LANGUAGE_TO_DATABASE_REPO[this.language];

0 commit comments

Comments
 (0)