Skip to content

Commit 5816b3a

Browse files
committed
Fix having the jvm args being copied to the conf file
1 parent 121f812 commit 5816b3a

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

build.xml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,9 +37,7 @@
3737
<property name="jdkhome.string" value='#jdkhome="/path/to/jdk"'/>
3838
<copy file="${harness.dir}/etc/app.conf" tofile="build/launcher/etc/${app.name}.conf" overwrite="true">
3939
<filterchain>
40-
<replacestring from="$${branding.token}" to="${branding.token}"/>
41-
<replacestring from="$${APPNAME}/dev" to="$${APPNAME}/${app.version}"/>
42-
<replacestring from="-J-Xmx64m" to="${run.args.extra}"/>
40+
<replacestring from="$${branding.token}" to="${branding.token} ${run.args.extra}"/>
4341
<replacestring from='#jdkhome="/path/to/jdk"' to ='${jdkhome.string}'/>
4442
</filterchain>
4543
</copy>

0 commit comments

Comments
 (0)