Skip to content

Commit

Permalink
Fix problems with spaces in paths on Windows
Browse files Browse the repository at this point in the history
  • Loading branch information
me-johnomar authored and valentjn committed Jul 20, 2020
1 parent 9f8d81d commit 791c091
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions ltexls-core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -251,6 +251,10 @@
<replacetoken>"%REPO%"\*</replacetoken>
<replacevalue>"%REPO%"\ltexls-languagetool-patch-${project.version}.jar;"%REPO%"\*</replacevalue>
</replace>
<replace file="target/appassembler/bin/ltex-ls.bat">
<replacetoken>%JAVACMD% %JAVA_OPTS% -classpath %CLASSPATH%</replacetoken>
<replacevalue>"%JAVACMD%" %JAVA_OPTS% -classpath "%CLASSPATH%"</replacevalue>
</replace>
<replace file="target/appassembler/bin/ltex-ls.bat">
<replacetoken>if "%JAVACMD%"=="" set JAVACMD=java</replacetoken>
<replacevalue><![CDATA[if "%JAVACMD%" NEQ "" goto init
Expand Down

0 comments on commit 791c091

Please sign in to comment.