Skip to content

Commit

Permalink
One more?
Browse files Browse the repository at this point in the history
  • Loading branch information
anthonyshew committed Aug 7, 2024
1 parent 023afc4 commit 7620bca
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions .github/actions/validate-docs-links/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -76,9 +76,7 @@ async function getAllMdxFilePaths(
fileList: string[] = []
): Promise<string[]> {
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);
Expand Down

0 comments on commit 7620bca

Please sign in to comment.