Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
zspitzer committed Aug 13, 2024
1 parent 06e0c79 commit 53779e8
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion apps/updateserver/services/legacy/S3.cfc
Original file line number Diff line number Diff line change
Expand Up @@ -514,7 +514,9 @@ component {

// unpack the servers
local.minorVersion=mid(server.lucee.version,1,find(".",server.lucee.version,find(".",minorVersion)+1)-1);
zip action="unzip" file=#curr&("build/servers/tomcat-"&("build/servers/tomcat-"&(local.minorVersion >= '6.2'?'jakarta':'javax')&".zip")# destination=tmpTom;
local.srcTomcat = curr & "build/servers/tomcat-"
& (local.minorVersion >= '6.2' ? 'jakarta':'javax' ) & ".zip";
zip action="unzip" file=srcTomcat destination=tmpTom;

// let's zip it
zip action="zip" file=zipTmp overwrite=true {
Expand Down

0 comments on commit 53779e8

Please sign in to comment.