Skip to content

Commit

Permalink
Update download-latest-java-tomcat.cfm
Browse files Browse the repository at this point in the history
  • Loading branch information
zspitzer committed Aug 14, 2024
1 parent d3ee655 commit 174881b
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions download-latest-java-tomcat.cfm
Original file line number Diff line number Diff line change
Expand Up @@ -72,8 +72,9 @@
dir = mid(files.directory, find( "!", files.directory) + 2 );
systemOutput( "#dir# #files.name# #files.size# #files.type# #files.mode#", true );
if ( files.type == "file" ){
file = arguments.dest & dir & files.name;
systemOutput( file );
file = arguments.dest & mid( dir, 2 ) & files.name;
systemOutput( file, true );
systemOutput( fileExists( file ), true );
fileSetAccessMode(file , files.mode );
systemOutput( fileInfo( file ).mode, true );
}
Expand Down

0 comments on commit 174881b

Please sign in to comment.