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 | 61ef38efa40e6ef61efa375de5daea4306b635d9 (patch) | |
tree | e630618fdf84227dfce5e74d341823a94c825af7 /extension/src/activation | |
parent | a3734d0500c412af891265c1855a43b19752f4e5 (diff) | |
download | sncontinue-61ef38efa40e6ef61efa375de5daea4306b635d9.tar.gz sncontinue-61ef38efa40e6ef61efa375de5daea4306b635d9.tar.bz2 sncontinue-61ef38efa40e6ef61efa375de5daea4306b635d9.zip |
outcomes of work session
Diffstat (limited to 'extension/src/activation')
-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) { |