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 bc30998 commit d3ee655
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions download-latest-java-tomcat.cfm
Original file line number Diff line number Diff line change
Expand Up @@ -71,10 +71,12 @@
loop query="files"{
dir = mid(files.directory, find( "!", files.directory) + 2 );
systemOutput( "#dir# #files.name# #files.size# #files.type# #files.mode#", true );
file = arguments.dest & dir & files.name;
systemOutput( file );
fileSetAccessMode(file , files.mode );
systemOutput( fileInfo( file ).mode, true );
if ( files.type == "file" ){
file = arguments.dest & dir & files.name;
systemOutput( file );
fileSetAccessMode(file , files.mode );
systemOutput( fileInfo( file ).mode, true );
}
}
throw "stop!";
Expand Down

0 comments on commit d3ee655

Please sign in to comment.