summaryrefslogtreecommitdiff
path: root/extension/src/activation/environmentSetup.ts
diff options
context:
space:
mode:
Diffstat (limited to 'extension/src/activation/environmentSetup.ts')
-rw-r--r--extension/src/activation/environmentSetup.ts2
1 files changed, 2 insertions, 0 deletions
diff --git a/extension/src/activation/environmentSetup.ts b/extension/src/activation/environmentSetup.ts
index 5e2e3c0f..a0d6a653 100644
--- a/extension/src/activation/environmentSetup.ts
+++ b/extension/src/activation/environmentSetup.ts
@@ -455,6 +455,8 @@ export async function startContinuePythonServer() {
exePath = path.join(exeDir, "run-win.exe");
} else if (os.platform() === "darwin") {
exePath = path.join(exeDir, "run-darwin");
+ // Add permissions
+ await runCommand(`chmod +x ${exePath}`);
await runCommand(`xattr -dr com.apple.quarantine ${exePath}`);
} else {
exePath = path.join(exeDir, "run-linux");