Skip to content

Commit

Permalink
Correct supporting files path
Browse files Browse the repository at this point in the history
Fixes #5330
  • Loading branch information
dragonstyle committed May 17, 2023
1 parent ff70ae3 commit 701ccf3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/publish/publish.ts
Original file line number Diff line number Diff line change
Expand Up @@ -233,7 +233,7 @@ export async function publishDocument(
...resultFile.supporting
.map((sf) => {
if (!isAbsolute(sf)) {
return join(baseDir, sf);
return relative(baseDir, sf);
} else {
return sf;
}
Expand Down

0 comments on commit 701ccf3

Please sign in to comment.