Skip to content

Commit c31f8f1

Browse files
committed
critical bug fix
Previously, we did not include the *./webapp/WEB-INF/lib* folder when creating the *./addon* archive if it was determined to be empty. However, it was found that this omission causes a problem with WebCTRL in some cases. So, now we include the *lib* folder in all cases.
1 parent 3e21d48 commit c31f8f1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Utility.bat

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ if "%1" EQU "--goto" (
4646
setlocal EnableDelayedExpansion
4747

4848
:: Version control
49-
set "version=1.1.2"
49+
set "version=1.1.3"
5050
if "%1" EQU "--version" (
5151
echo %version%
5252
exit /b
@@ -421,7 +421,7 @@ exit /b
421421
robocopy /E "%src%" "%classes%" /XF "*.java" >nul 2>nul
422422
copy /Y "%workspace%\LICENSE" "%root%\LICENSE" >nul 2>nul
423423
(
424-
for /F "usebackq tokens=* delims=" %%i in (`PowerShell -Command "Get-ChildItem -Recurse -File -Exclude '*-sources.jar' -Name -Path '%root%'"`) do (
424+
for /F "usebackq tokens=* delims=" %%i in (`PowerShell -Command "Get-ChildItem -Recurse -Exclude '*-sources.jar' -Name -Path '%root%'"`) do (
425425
echo -C "%root:\=\\%" %%i
426426
)
427427
)>"%~dp0tmp"

0 commit comments

Comments
 (0)