Skip to content

Commit

Permalink
Fix providing custom paths
Browse files Browse the repository at this point in the history
  • Loading branch information
bertdeblock committed Mar 18, 2024
1 parent ca32862 commit 874c6c9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/generate-document.ts
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ function getDocumentPath(
if (isAbsolute(path)) {
return path;
} else {
join(cwd, path);
return join(cwd, path);
}
}

Expand Down

0 comments on commit 874c6c9

Please sign in to comment.