summaryrefslogtreecommitdiff
path: root/extension
diff options
context:
space:
mode:
Diffstat (limited to 'extension')
-rw-r--r--extension/src/activation/environmentSetup.ts6
1 files changed, 3 insertions, 3 deletions
diff --git a/extension/src/activation/environmentSetup.ts b/extension/src/activation/environmentSetup.ts
index a0d6a653..56d5a628 100644
--- a/extension/src/activation/environmentSetup.ts
+++ b/extension/src/activation/environmentSetup.ts
@@ -452,14 +452,14 @@ export async function startContinuePythonServer() {
const exeDir = path.join(getExtensionUri().fsPath, "server", "exe");
let exePath: string;
if (os.platform() === "win32") {
- exePath = path.join(exeDir, "run-win.exe");
+ exePath = path.join(exeDir, "windows", "run.exe");
} else if (os.platform() === "darwin") {
- exePath = path.join(exeDir, "run-darwin");
+ exePath = path.join(exeDir, "mac", "run");
// Add permissions
await runCommand(`chmod +x ${exePath}`);
await runCommand(`xattr -dr com.apple.quarantine ${exePath}`);
} else {
- exePath = path.join(exeDir, "run-linux");
+ exePath = path.join(exeDir, "linux", "run");
}
// Run the executable