Skip to content

Commit 880565f

Browse files
committed
Change output file name to x-qmd-app.py
1 parent ecbcfc0 commit 880565f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/execute/jupyter/jupyter.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -471,7 +471,7 @@ export const jupyterEngine: ExecutionEngine = {
471471

472472
let running = false;
473473
const [_dir, stem] = dirAndStem(options.input);
474-
const appFile = `${stem}-app.py`;
474+
const appFile = `${stem}-qmd-app.py`;
475475
const cmd = [
476476
...await pythonExec(),
477477
"-m",

src/resources/filters/quarto-pre/shiny.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ function server_shiny()
146146
file:close()
147147

148148
-- Convert the json file to myfile-app.py by calling `shiny convert-cells`.
149-
appOutfile = pandoc.path.split_extension(quarto.doc.input_file) .. "-app.py"
149+
appOutfile = pandoc.path.split_extension(quarto.doc.input_file) .. "-qmd-app.py"
150150
callPythonShiny(
151151
{ "cells-to-app", codeCellsOutfile, appOutfile }
152152
)

0 commit comments

Comments
 (0)