Skip to content

Commit 138768d

Browse files
committed
Fix quarto pandoc not returning anything
This is a follow up of 00249a4 to avoid hanging due to an error in the refactoring for pandoc call.
1 parent a76b043 commit 138768d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/quarto.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ export async function quarto(
119119
await checkReconfiguration();
120120
checkVersionRequirement();
121121
if (args[0] === "pandoc" && args[1] !== "help") {
122-
await passThroughPandoc(args.slice(1), env);
122+
await passThroughPandoc(args, env);
123123
}
124124
if (args[0] === "typst") {
125125
await passThroughTypst(args, env);

0 commit comments

Comments
 (0)