Skip to content

Commit

Permalink
Remove unnecessary quotes around vmoptions props
Browse files Browse the repository at this point in the history
These caused the process name for eXist-db to be `“eXist-db”` rather than `eXist-db`. Tested and confirmed dock name, icon, and menu bar are unaffected by this change.

First described in #1248.
  • Loading branch information
joewiz committed Oct 3, 2018
1 parent 75958be commit 5fae363
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion installer/vm.properties
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,6 @@ memory.min=64
vmoptions=-Dfile.encoding=UTF-8

# Mac specific properties
vmoptions.mac=-Xdock:name="eXist-db" -Xdock:icon="icon.png" -Dapple.laf.useScreenMenuBar="true"
vmoptions.mac=-Xdock:name=eXist-db -Xdock:icon=icon.png -Dapple.laf.useScreenMenuBar=true

vmoptions.win=-Djava.security.manager -Djava.security.policy=tools/yajsw/conf/yajsw.policy
2 changes: 1 addition & 1 deletion src/org/exist/launcher/vm.properties
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,4 @@ memory.max=2048
vmoptions=-Dfile.encoding=UTF-8

# Mac specific properties
vmoptions.mac=-Xdock:name="eXist-db" -Xdock:icon="icon.png" -Dapple.laf.useScreenMenuBar="true"
vmoptions.mac=-Xdock:name=eXist-db -Xdock:icon=icon.png -Dapple.laf.useScreenMenuBar=true
2 changes: 1 addition & 1 deletion vm.properties
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,6 @@ memory.min=128
vmoptions=-Dfile.encoding=UTF-8

# Mac specific properties
vmoptions.mac=-Xdock:name="eXist-db" -Xdock:icon="icon.png" -Dapple.laf.useScreenMenuBar="true"
vmoptions.mac=-Xdock:name=eXist-db -Xdock:icon=icon.png -Dapple.laf.useScreenMenuBar=true

vmoptions.win=-Djava.security.manager -Djava.security.policy=tools/yajsw/conf/yajsw.policy

0 comments on commit 5fae363

Please sign in to comment.