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:
parent
7d59197b7b
commit
35488e04a0
@ -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 "$@"
|
||||
|
Loading…
Reference in New Issue
Block a user