Skip to content

Commit 36d308f

Browse files
committed
smoke-all - respect project-dir if it exists for a website
1 parent ca47a46 commit 36d308f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/smoke/smoke-all.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -281,6 +281,6 @@ function findProjectOutputDir(input: string) {
281281
return "_book";
282282
}
283283
if (type === "website") {
284-
return "_site";
284+
return (yaml as any)?.project?.["output-dir"] || "_site";
285285
}
286286
}

0 commit comments

Comments
 (0)