Skip to content

Commit

Permalink
dump paths
Browse files Browse the repository at this point in the history
  • Loading branch information
zspitzer committed Jul 24, 2024
1 parent d6ff0f0 commit df20a3a
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 1 deletion.
10 changes: 10 additions & 0 deletions custom/jar-conflict/index.cfm
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,23 @@
poiJarPaths = [];
systemOutput( "Poi Ext files", true );
systemOutput( files, true );
for ( file in files ){
if ( listLast( file, ".") eq "jar" && listLast( file, "/") contains "poi-" )
arrayAppend(poiJarPaths, file );
}
systemOutput( "createObject include jar paths", true );
systemOutput( poiJarPaths, true );
systemOutput( "context/lib jar files", true );
contextLibDir = ExpandPath('{lucee-config}') & "/lib";
files = directoryList( contextLibDir, true );
systemOutput( files );
// test case for https://luceeserver.atlassian.net/browse/LDEV-4998
// Bad type on operand stack Exception calling poi
Expand Down
3 changes: 2 additions & 1 deletion custom/jar-conflict/setup.cfm
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,8 @@
fileCopy( file, contextLibDir );
}
}
contextLibDir = ExpandPath('{lucee-config}') & "/lib";
files = directoryList( contextLibDir, true );
systemOutput( files );
Expand Down

0 comments on commit df20a3a

Please sign in to comment.