diff options
author | Ty Dunn <ty@tydunn.com> | 2023-06-05 08:53:48 +0200 |
---|---|---|
committer | Ty Dunn <ty@tydunn.com> | 2023-06-05 08:53:48 +0200 |
commit | 0930f7048c9fcf5836cbee92e37a95f45693ded8 (patch) | |
tree | eb0596e1db4bfb54a8a6974f215bb382f4bf8b24 /extension/src/activation/environmentSetup.ts | |
parent | 4fdf41ae8df6f58c27b034dd75f7efd66d8f4919 (diff) | |
download | sncontinue-0930f7048c9fcf5836cbee92e37a95f45693ded8.tar.gz sncontinue-0930f7048c9fcf5836cbee92e37a95f45693ded8.tar.bz2 sncontinue-0930f7048c9fcf5836cbee92e37a95f45693ded8.zip |
outcomes of work session
Diffstat (limited to 'extension/src/activation/environmentSetup.ts')
-rw-r--r-- | extension/src/activation/environmentSetup.ts | 2 |
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) { |