File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 6161 foreach ($w in $webroots) {
6262 foreach ($e in $executes) {
6363 Write-Host "Testing webroot=$w execute=$e"
64- $result = ant -buildfile build.xml -Dwebroot="$w" -Dexecute="$e" -DpreCleanup=false -DpostCleanup=false -DluceeVersionQuery=$env:LUCEE_VERSION_QUERY 2>&1
64+ $luceeVersionQuery = $env:LUCEE_VERSION_QUERY
65+ $antArgs = @(
66+ '-buildfile', 'build.xml',
67+ "-Dwebroot=$w",
68+ "-Dexecute=$e",
69+ '-DpreCleanup=false',
70+ '-DpostCleanup=false',
71+ "-DluceeVersionQuery=$luceeVersionQuery"
72+ )
73+ Write-Host "CMD: ant $($antArgs -join ' ')"
74+ $result = & ant @antArgs 2>&1
6575 if ($LASTEXITCODE -ne 0) {
6676 $cmd = "ant -buildfile build.xml -Dwebroot=$w -Dexecute=$e -DpreCleanup=false -DpostCleanup=false -DluceeVersionQuery=$env:LUCEE_VERSION_QUERY"
6777 $platform = "macos-latest"
You can’t perform that action at this time.
0 commit comments