Skip to content

Commit c3ca827

Browse files
committed
replace backslashes in user-specified project path
1 parent 7b89d10 commit c3ca827

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/execute/julia.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ import {
3434
} from "../config/format.ts";
3535
import { resourcePath } from "../core/resources.ts";
3636
import { quartoRuntimeDir } from "../core/appdirs.ts";
37-
import { normalizePath } from "../core/path.ts";
37+
import { normalizePath, pathWithForwardSlashes } from "../core/path.ts";
3838
import { isInteractiveSession } from "../core/platform.ts";
3939
import { runningInCI } from "../core/ci-info.ts";
4040
import { sleep } from "../core/async.ts";
@@ -271,6 +271,7 @@ async function startOrReuseJuliaServer(
271271
await ensureQuartoNotebookRunnerEnvironment(options);
272272
juliaProject = juliaRuntimeDir();
273273
} else {
274+
juliaProject = pathWithForwardSlashes(juliaProject);
274275
trace(
275276
options,
276277
`Custom julia project set via QUARTO_JULIA_PROJECT="${juliaProject}". Checking if QuartoNotebookRunner can be loaded.`,

0 commit comments

Comments
 (0)