summaryrefslogtreecommitdiff
path: root/extension/src
diff options
context:
space:
mode:
authorTy Dunn <ty@tydunn.com>2023-06-25 21:34:19 -0700
committerGitHub <noreply@github.com>2023-06-25 21:34:19 -0700
commite429aa8f8543a3741913cf4ee4d0db41bef0dc5b (patch)
tree6150b3e85f049f2a9b822be11f6384be687208f8 /extension/src
parenta52e7404ddde84fc53e62581d24c554b3587b183 (diff)
parentdd30db17b7de063c07b4fd0e41f390c47fe4a399 (diff)
downloadsncontinue-e429aa8f8543a3741913cf4ee4d0db41bef0dc5b.tar.gz
sncontinue-e429aa8f8543a3741913cf4ee4d0db41bef0dc5b.tar.bz2
sncontinue-e429aa8f8543a3741913cf4ee4d0db41bef0dc5b.zip
Merge pull request #154 from continuedev/semicolon
&& -> ;
Diffstat (limited to 'extension/src')
-rw-r--r--extension/src/activation/environmentSetup.ts8
1 files changed, 4 insertions, 4 deletions
diff --git a/extension/src/activation/environmentSetup.ts b/extension/src/activation/environmentSetup.ts
index 54c263bd..66e1c722 100644
--- a/extension/src/activation/environmentSetup.ts
+++ b/extension/src/activation/environmentSetup.ts
@@ -121,7 +121,7 @@ async function setupPythonEnv() {
activateCmd,
pipUpgradeCmd,
`${pipCmd} install -r requirements.txt`,
- ].join(" && ");
+ ].join(" ; ");
const [, stderr] = await runCommand(installRequirementsCommand);
if (stderr) {
throw new Error(stderr);
@@ -199,7 +199,7 @@ export async function startContinuePythonServer() {
let command = `cd ${path.join(
getExtensionUri().fsPath,
"scripts"
- )} && ${activateCmd} && cd .. && ${pythonCmd} -m scripts.run_continue_server`;
+ )} ; ${activateCmd} ; cd .. ; ${pythonCmd} -m scripts.run_continue_server`;
return new Promise(async (resolve, reject) => {
try {
@@ -255,10 +255,10 @@ export async function downloadPython3() {
throw new Error("python3 not found");
} else if (os === "linux") {
command =
- "sudo apt update && upgrade && sudo apt install python3 python3-pip";
+ "sudo apt update ; upgrade ; sudo apt install python3 python3-pip";
} else if (os === "win32") {
command =
- "wget -O python_installer.exe https://www.python.org/ftp/python/3.11.3/python-3.11.3-amd64.exe && python_installer.exe /quiet InstallAllUsers=1 PrependPath=1 Include_test=0";
+ "wget -O python_installer.exe https://www.python.org/ftp/python/3.11.3/python-3.11.3-amd64.exe ; python_installer.exe /quiet InstallAllUsers=1 PrependPath=1 Include_test=0";
pythonCmd = "python";
}