MCPcopy Create free account
hub / github.com/microsoft/AI-Engineering-Coach / findXcodeDirs

Function findXcodeDirs

src/core/parser-xcode.ts:24–30  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

22/* ---- Directory discovery ---- */
23
24export function findXcodeDirs(): string[] {
25 const home = process.env.HOME || process.env.USERPROFILE || '';
26 const dirs: string[] = [];
27 const xcodeBase = path.join(home, '.config', 'github-copilot', 'xcode');
28 if (fs.existsSync(xcodeBase)) dirs.push(xcodeBase);
29 return dirs;
30}
31
32/* ---- Helpers ---- */
33

Callers 2

findLogsDirsFunction · 0.90

Calls

no outgoing calls

Tested by

no test coverage detected