File tree 1 file changed +0
-3
lines changed
src/client/terminals/envCollectionActivation 1 file changed +0
-3
lines changed Original file line number Diff line number Diff line change @@ -10,7 +10,6 @@ import { pathExists } from '../../common/platform/fs-paths';
10
10
import { _SCRIPTS_DIR } from '../../common/process/internal/scripts/constants' ;
11
11
import { identifyShellFromShellPath } from '../../common/terminal/shellDetectors/baseShellDetector' ;
12
12
import { cache } from '../../common/utils/decorators' ;
13
- import { StopWatch } from '../../common/utils/stopWatch' ;
14
13
import { IInterpreterService } from '../../interpreter/contracts' ;
15
14
import { virtualEnvTypes } from '../../pythonEnvironments/info' ;
16
15
import { ITerminalDeactivateService } from '../types' ;
@@ -47,9 +46,7 @@ export class TerminalDeactivateService implements ITerminalDeactivateService {
47
46
const checkIfFileHasBeenCreated = ( ) => pathExists ( outputFile ) ;
48
47
terminal . sendText ( `${ interpreterPath } "${ this . envVarScript } " "${ outputFile } "` ) ;
49
48
terminal . sendText ( `${ interpreterPath } "${ this . printenvVarScript } "` ) ;
50
- const s = new StopWatch ( ) ;
51
49
await waitForCondition ( checkIfFileHasBeenCreated , 30_000 , `"${ outputFile } " file not created` ) ;
52
- console . log ( 'great' , s . elapsedTime ) ;
53
50
}
54
51
55
52
public getDeactivateScriptLocation ( _shell : string ) : string {
You can’t perform that action at this time.
0 commit comments