Skip to content

Commit

Permalink
Merge pull request #3426 from ShammiL/long-path
Browse files Browse the repository at this point in the history
Fix path too long error in batch file
  • Loading branch information
chanikag authored Jul 16, 2024
2 parents b0bf03c + 0bfa7bd commit e7d5945
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions distribution/src/scripts/micro-integrator.bat
Original file line number Diff line number Diff line change
Expand Up @@ -67,10 +67,8 @@ setlocal EnableDelayedExpansion
cd %CARBON_HOME%
set CARBON_CLASSPATH=
FOR %%C in ("%CARBON_HOME%\bin\*.jar") DO set CARBON_CLASSPATH=!CARBON_CLASSPATH!;".\bin\%%~nC%%~xC"

set CARBON_CLASSPATH="%JAVA_HOME%\lib\tools.jar";%CARBON_CLASSPATH%;

FOR %%D in ("%CARBON_HOME%\wso2\lib\*.jar") DO set CARBON_CLASSPATH=!CARBON_CLASSPATH!;".\wso2\lib\%%~nD%%~xD"
set CARBON_CLASSPATH="%JAVA_HOME%\lib\tools.jar";%CARBON_CLASSPATH%
set CARBON_CLASSPATH=%CARBON_CLASSPATH%;".\wso2\lib\*"

rem ----- Process the input command -------------------------------------------

Expand Down

0 comments on commit e7d5945

Please sign in to comment.