summaryrefslogtreecommitdiff
path: root/extension/src/activation/environmentSetup.ts
diff options
context:
space:
mode:
authorTy Dunn <ty@tydunn.com>2023-06-05 09:35:25 +0200
committerGitHub <noreply@github.com>2023-06-05 09:35:25 +0200
commit1261c54b736b29be361ac30fe1fd9bad52e62c2d (patch)
tree1b462d1ab3bb2a2b0fc134ba92d3af7da2d72a57 /extension/src/activation/environmentSetup.ts
parent99d0cf12dcd1481e719e78483fc7df080dc95954 (diff)
parent897e6dc1239be26db74a933d10325b86ae55e5fb (diff)
downloadsncontinue-1261c54b736b29be361ac30fe1fd9bad52e62c2d.tar.gz
sncontinue-1261c54b736b29be361ac30fe1fd9bad52e62c2d.tar.bz2
sncontinue-1261c54b736b29be361ac30fe1fd9bad52e62c2d.zip
Merge pull request #64 from continuedev/docs-v0
docs v0
Diffstat (limited to 'extension/src/activation/environmentSetup.ts')
-rw-r--r--extension/src/activation/environmentSetup.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/extension/src/activation/environmentSetup.ts b/extension/src/activation/environmentSetup.ts
index 170426e1..21f867b1 100644
--- a/extension/src/activation/environmentSetup.ts
+++ b/extension/src/activation/environmentSetup.ts
@@ -88,7 +88,7 @@ async function setupPythonEnv() {
const createEnvCommand = [
`cd ${path.join(getExtensionUri().fsPath, "scripts")}`,
`${pythonCmd} -m venv env`,
- ].join(" && ");
+ ].join(" ; ");
// Repeat until it is successfully created (sometimes it fails to generate the bin, need to try again)
while (true) {