We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b87f521 commit f0fa9c0Copy full SHA for f0fa9c0
src/plutoServerTask.ts
@@ -1,7 +1,7 @@
1
import * as vscode from "vscode";
2
import { isDefined } from "./helpers.ts";
3
import { isPortAvailable, findAvailablePort } from "./portUtils.ts";
4
-import { getExecutableName } from "./platformUtils.ts";
+import { getExecutableName, isWindows } from "./platformUtils.ts";
5
6
/**
7
* Parse Julia executable path to extract command and arguments
@@ -353,7 +353,7 @@ end`
353
const env: { [key: string]: string } = {
354
JULIA_PLUTO_VSCODE_WORKSPACE: workspacePath,
355
JULIA_DEPOT_PATH: "~/.julia",
356
- JULIA_LOAD_PATH: ":",
+ JULIA_LOAD_PATH: isWindows() ? ";" : ":",
357
};
358
if (packageServer) {
359
env.JULIA_PKG_SERVER = packageServer;
0 commit comments