563
normalized = { name, source: { source: 'github', repo: src.repo, ...(src.ref ? { ref: src.ref } : {}) } };
564
} else if (src.source === 'git' && isString(src.url)) {
565
>
normalized = { name, source: { source: 'git', url: src.url, ...(src.ref ? { ref: src.ref } : {}) } };
copilotManagedSettings.ts
566
>
} else if (src.source === 'github' || src.source === 'git') {
567
onWarn?.(`Skipping extraKnownMarketplaces entry "${name}": source "${src.source}" requires ${src.source === 'github' ? '"repo"' : '"url"'}`);
568
} else {