Skip to content

Commit a8cfda8

Browse files
committed
py-shiny - Use explicit = syntax for option
Otherwise, `quarto preview` does not work on Windows as quoting is not enough to avoid shell expension pallets/click#2359 Could be revisited if shiny for python opt-out shell expansion
1 parent febb497 commit a8cfda8

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/execute/jupyter/jupyter.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -515,8 +515,7 @@ export const jupyterEngine: ExecutionEngine = {
515515
];
516516
if (options.reload) {
517517
cmd.push("--reload");
518-
cmd.push(`--reload-includes`);
519-
cmd.push(`*.py`);
518+
cmd.push(`--reload-includes=*.py`);
520519
}
521520

522521
// start server

0 commit comments

Comments
 (0)