Skip to content

Commit 5e73b00

Browse files
committed
Fix quoted pipes in jvm.config
Remove quotes from the new JVM_CONFIG_MAVEN_OPTS to also allow quoted pipes to work from jvm.config This is a follow-up to #10937, where the extra layer of quotes causes parsing issues in Windows cmd
1 parent 8d99947 commit 5e73b00

File tree

1 file changed

+1
-1
lines changed
  • apache-maven/src/assembly/maven/bin

1 file changed

+1
-1
lines changed

apache-maven/src/assembly/maven/bin/mvn.cmd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -204,7 +204,7 @@ for /F "usebackq tokens=* delims=" %%a in ("%MAVEN_PROJECTBASEDIR%\.mvn\jvm.conf
204204
)
205205
)
206206
)
207-
@endlocal & set "JVM_CONFIG_MAVEN_OPTS=%JVM_CONFIG_MAVEN_OPTS%"
207+
@endlocal & set JVM_CONFIG_MAVEN_OPTS=%JVM_CONFIG_MAVEN_OPTS%
208208

209209
:endReadJvmConfig
210210

0 commit comments

Comments
 (0)