Helper script support JAVA_{ARGS,OPTS} (#4640)

Make it possible to pass addition arguments to the
JVM.

Apparently there are two vars and they are [commonly *both* used][1].

Go figure.

[1]: https://stackoverflow.com/questions/23507639/is-it-same-mean-java-args-and-java-opts
This commit is contained in:
George Hartzell 2017-06-29 13:38:12 -07:00 committed by Adam J. Stewart
parent 7d59197b7b
commit 35488e04a0

View File

@ -1,3 +1,3 @@
#!/bin/sh
# convenience wrapper for the trimmomatic.jar file
java -jar trimmomatic.jar "$@"
java $JAVA_ARGS $JAVA_OPTS -jar trimmomatic.jar "$@"