Skip to content

Commit

Permalink
Use posix path join to make windows tests pass
Browse files Browse the repository at this point in the history
  • Loading branch information
slorber committed May 31, 2024
1 parent 7e6fe91 commit 389e046
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/docusaurus-utils-validation/src/tagsFile.ts
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ export function getTagsFilePathsToWatch({
const relativeFilePath = tags ?? DefaultTagsFileName;

return getContentPathList(contentPaths).map((contentPath) =>
path.join(contentPath, relativeFilePath),
path.posix.join(contentPath, relativeFilePath),
);
}

Expand Down

0 comments on commit 389e046

Please sign in to comment.