We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2053b5d commit 649a47dCopy full SHA for 649a47d
extensions/ql-vscode/src/data-extensions-editor/extension-packs.ts
@@ -39,6 +39,13 @@ export async function pickExtensionPack(
39
if (extensionPackPaths.length !== 1) {
40
void showAndLogErrorMessage(
41
`Extension pack ${extensionPackOption.extensionPack} could not be resolved to a single location`,
42
+ {
43
+ fullMessage: `Extension pack ${
44
+ extensionPackOption.extensionPack
45
+ } could not be resolved to a single location. Found ${
46
+ extensionPackPaths.length
47
+ } locations: ${extensionPackPaths.join(", ")}.`,
48
+ },
49
);
50
return undefined;
51
}
0 commit comments