File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
src/client/common/process Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -5,9 +5,6 @@ import * as path from 'path';
5
5
import { EXTENSION_ROOT_DIR } from '../constants' ;
6
6
import { PythonVersionInfo } from './types' ;
7
7
8
- // It is simpler to hard-code it instead of using vscode.ExtensionContext.extensionPath.
9
- const SCRIPTS_DIR = path . join ( EXTENSION_ROOT_DIR , 'pythonFiles' ) ;
10
-
11
8
/****************************
12
9
* The following namespaces cover the following:
13
10
*
@@ -39,6 +36,9 @@ const SCRIPTS_DIR = path.join(EXTENSION_ROOT_DIR, 'pythonFiles');
39
36
// * install_debugpy.py (used only for extension development)
40
37
// * ptvsd_launcher.py (used only for the old debug adapter)
41
38
export namespace scripts {
39
+ // It is simpler to hard-code it instead of using vscode.ExtensionContext.extensionPath.
40
+ const SCRIPTS_DIR = path . join ( EXTENSION_ROOT_DIR , 'pythonFiles' ) ;
41
+
42
42
//============================
43
43
// interpreterInfo.py
44
44
You can’t perform that action at this time.
0 commit comments