Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions news/changelog-1.6.md
Original file line number Diff line number Diff line change
Expand Up @@ -102,6 +102,7 @@ All changes included in 1.6:
- Upgrade `mermaidjs` to 11.2.0.
- Upgrade Pandoc to 3.4.
- Upgrade `deno` to 1.46.3.
- ([#2699])(https://github.com/quarto-dev/quarto-cli/issues/2699)): Respect input/output streams in `quarto pandoc`.
- ([#10162](https://github.com/quarto-dev/quarto-cli/issues/10162)): Use Edge on `macOS` as a Chromium browser when available.
- ([#10235](https://github.com/quarto-dev/quarto-cli/issues/10235)): Configure the CI schedule trigger to activate exclusively for the upstream repository.
- ([#10295](https://github.com/quarto-dev/quarto-cli/issues/10235)): Fix regression to return error status to shell when `CommandError` is thrown.
Expand Down
14 changes: 10 additions & 4 deletions src/quarto.ts
Original file line number Diff line number Diff line change
Expand Up @@ -68,10 +68,16 @@ export async function quarto(

// passthrough to pandoc
if (args[0] === "pandoc" && args[1] !== "help") {
const result = await execProcess({
cmd: [pandocBinaryPath(), ...args.slice(1)],
env,
});
const result = await execProcess(
{
cmd: [pandocBinaryPath(), ...args.slice(1)],
env,
},
undefined,
undefined,
undefined,
true,
);
Deno.exit(result.code);
}

Expand Down
Loading