From 7620bcac306364e9698b805f9e8c2d38ccb37ec8 Mon Sep 17 00:00:00 2001 From: Anthony Shew Date: Tue, 6 Aug 2024 23:43:39 -0600 Subject: [PATCH] One more? --- .github/actions/validate-docs-links/src/index.ts | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/.github/actions/validate-docs-links/src/index.ts b/.github/actions/validate-docs-links/src/index.ts index 3f40cb0b74f0b..e45823f21cf93 100644 --- a/.github/actions/validate-docs-links/src/index.ts +++ b/.github/actions/validate-docs-links/src/index.ts @@ -76,9 +76,7 @@ async function getAllMdxFilePaths( fileList: string[] = [] ): Promise { for (const dir of directoriesToScan) { - console.log(process.cwd()); - console.log(path.join("../../", dir)); - const dirPath = path.join("../../", dir); + const dirPath = path.join("../../../", dir); const files = await fs.readdir(dirPath); for (const file of files) { const filePath = path.join(dirPath, file);