Skip to content

Commit 46c01ec

Browse files
authored
remove --live-stream from conda run command (#713)
fixes microsoft/vscode#257411 (comment)
1 parent f78c997 commit 46c01ec

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/managers/conda/condaUtils.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -329,7 +329,7 @@ async function getNamedCondaPythonInfo(
329329
run: { executable: path.join(executable) },
330330
activatedRun: {
331331
executable: 'conda',
332-
args: ['run', '--live-stream', '--name', name, 'python'],
332+
args: ['run', '--name', name, 'python'],
333333
},
334334
activation: [{ executable: 'conda', args: ['activate', name] }],
335335
deactivation: [{ executable: 'conda', args: ['deactivate'] }],
@@ -374,7 +374,7 @@ async function getPrefixesCondaPythonInfo(
374374
run: { executable: path.join(executable) },
375375
activatedRun: {
376376
executable: conda,
377-
args: ['run', '--live-stream', '--prefix', prefix, 'python'],
377+
args: ['run', '--prefix', prefix, 'python'],
378378
},
379379
activation: [{ executable: conda, args: ['activate', prefix] }],
380380
deactivation: [{ executable: conda, args: ['deactivate'] }],
@@ -938,7 +938,7 @@ export async function quickCreateConda(
938938
run: { executable: path.join(prefix, bin) },
939939
activatedRun: {
940940
executable: 'conda',
941-
args: ['run', '--live-stream', '-p', prefix, 'python'],
941+
args: ['run', '-p', prefix, 'python'],
942942
},
943943
activation: [{ executable: 'conda', args: ['activate', prefix] }],
944944
deactivation: [{ executable: 'conda', args: ['deactivate'] }],

0 commit comments

Comments
 (0)