diff options
Diffstat (limited to 'extension')
| -rw-r--r-- | extension/src/activation/environmentSetup.ts | 4 | 
1 files changed, 4 insertions, 0 deletions
| diff --git a/extension/src/activation/environmentSetup.ts b/extension/src/activation/environmentSetup.ts index db457bd2..b4ce9bff 100644 --- a/extension/src/activation/environmentSetup.ts +++ b/extension/src/activation/environmentSetup.ts @@ -201,6 +201,10 @@ export async function startContinuePythonServer() {      );      console.log("stdout: ", stdout1);      console.log("stderr: ", stderr1); +  } else if (os.platform() === "linux") { +    // Add necessary permissions +    console.log("Setting permissions for Continue server..."); +    fs.chmodSync(destination, 0o7_5_5);    }    // Validate that the file exists | 
