From e2adc2e172cf4504499f214b086636ae31262095 Mon Sep 17 00:00:00 2001 From: Florian Friedrich Date: Wed, 4 Sep 2024 09:19:04 +0200 Subject: [PATCH] Resolve checkout path --- src/main.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.ts b/src/main.ts index cc53016..8ff7e5d 100644 --- a/src/main.ts +++ b/src/main.ts @@ -133,7 +133,7 @@ async function main() { transformForStaticHosting: transformForStaticHosting, enableInheritedDocs: enableInheritedDocs, sourceRepository: checkoutPath || repoService || repoBaseUrl ? { - checkoutPath: nonEmpty(checkoutPath), + checkoutPath: mapNonNull(nonEmpty(checkoutPath), path.resolve), service: repoService && repoBaseUrl ? { type: repoService, baseUrl: repoBaseUrl,