Commit 68cf29d 1 parent 9b3431a commit 68cf29d Copy full SHA for 68cf29d
File tree 1 file changed +4
-0
lines changed
1 file changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -119,13 +119,17 @@ function hasPythonEnv(basePath) {
119
119
if ( path . startsWith ( "Emme " ) ) {
120
120
const majorVersionFolderPath = `${ basePath } ${ getDirSeparator ( ) } ${ path } ` ;
121
121
const majorVersionFolderPathFiles = fs . readdirSync ( majorVersionFolderPath ) ;
122
+
123
+ console . log ( majorVersionFolderPathFiles ) ;
122
124
123
125
// Filter away every folder except possible Emme installation folders
124
126
const subVersionFolders = majorVersionFolderPathFiles . filter ( file => file . startsWith ( "Emme-" ) ) ;
125
127
subVersionFolders . forEach ( subVersionFolder => {
126
128
// Go through the subdirectory and look for a python executable, should be in Emme-x.xx.xx.xx/Python/python.exe on Windows machines.
127
129
const emmeFolderFilesPath = majorVersionFolderPath . concat ( getDirSeparator ( ) , subVersionFolder ) ;
128
130
const emmeFolderFiles = fs . readdirSync ( emmeFolderFilesPath ) ;
131
+ console . log ( emmeFolderFilesPath ) ;
132
+ console . log ( emmeFolderFiles ) ;
129
133
emmeFolderFiles . forEach ( folderPath => {
130
134
if ( folderPath . startsWith ( "Python" ) ) {
131
135
const pythonFolderPath = emmeFolderFilesPath . concat ( getDirSeparator ( ) , folderPath ) ;
You can’t perform that action at this time.
0 commit comments