We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
copyFileSync
1 parent 4c44c81 commit 10e6f2dCopy full SHA for 10e6f2d
src/execute/julia.ts
@@ -397,7 +397,7 @@ async function ensureQuartoNotebookRunnerEnvironment(
397
) {
398
const projectTomlTemplate = juliaResourcePath("Project.toml");
399
const projectToml = join(juliaRuntimeDir(), "Project.toml");
400
- Deno.copyFileSync(projectTomlTemplate, projectToml);
+ Deno.writeFileSync(projectToml, Deno.readFileSync(projectTomlTemplate));
401
const command = new Deno.Command(juliaCmd(), {
402
args: [
403
"--startup-file=no",
0 commit comments