Skip to content

Commit 7c10447

Browse files
committed
Add .github folder manually
1 parent 9fd6cb8 commit 7c10447

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

extensions/ql-vscode/src/data-extensions-editor/extension-pack-picker.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,10 @@ export async function pickExtensionPack(
4343

4444
// Get all existing extension packs in the workspace
4545
const additionalPacks = getOnDiskWorkspaceFolders();
46+
// the CLI doesn't check packs in the .github folder, so we need to add it manually
47+
if (additionalPacks.length === 1) {
48+
additionalPacks.push(`${additionalPacks[0]}/.github`);
49+
}
4650
const extensionPacksInfo = await cliServer.resolveQlpacks(
4751
additionalPacks,
4852
true,

0 commit comments

Comments
 (0)