Remove inline comments from code

This commit is contained in:
Lina Tawfik
2025-05-23 11:22:47 -07:00
parent c60a8fb69b
commit a29981fe38
2 changed files with 1 additions and 4 deletions

View File

@@ -73,9 +73,7 @@ server.tool(
throw new Error("GITHUB_TOKEN environment variable is required"); throw new Error("GITHUB_TOKEN environment variable is required");
} }
// Process file paths - keep them as-is for now
const processedFiles = files.map((filePath) => { const processedFiles = files.map((filePath) => {
// Remove leading slash if present to ensure relative paths
if (filePath.startsWith("/")) { if (filePath.startsWith("/")) {
return filePath.slice(1); return filePath.slice(1);
} }
@@ -121,7 +119,6 @@ server.tool(
// 3. Create tree entries for all files // 3. Create tree entries for all files
const treeEntries = await Promise.all( const treeEntries = await Promise.all(
processedFiles.map(async (filePath) => { processedFiles.map(async (filePath) => {
// Construct the full path using REPO_DIR
const fullPath = filePath.startsWith('/') const fullPath = filePath.startsWith('/')
? filePath ? filePath
: join(REPO_DIR, filePath); : join(REPO_DIR, filePath);

View File

@@ -34,7 +34,7 @@ export async function prepareMcpConfig(
REPO_OWNER: owner, REPO_OWNER: owner,
REPO_NAME: repo, REPO_NAME: repo,
BRANCH_NAME: branch, BRANCH_NAME: branch,
REPO_DIR: process.env.GITHUB_WORKSPACE || process.cwd(), // Use GitHub workspace directory REPO_DIR: process.env.GITHUB_WORKSPACE || process.cwd(),
}, },
}, },
}, },