From 874c6c9439c519912814e04a371f0465eee04a29 Mon Sep 17 00:00:00 2001 From: Bert De Block Date: Mon, 18 Mar 2024 15:06:59 +0100 Subject: [PATCH] Fix providing custom paths --- src/generate-document.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/generate-document.ts b/src/generate-document.ts index 9022f30..58bd86d 100644 --- a/src/generate-document.ts +++ b/src/generate-document.ts @@ -66,7 +66,7 @@ function getDocumentPath( if (isAbsolute(path)) { return path; } else { - join(cwd, path); + return join(cwd, path); } }