docs: Update help

This commit is contained in:
Serge Guzik 2019-02-13 13:08:47 +02:00
parent 9cd7f2498a
commit 333597d8dd
2 changed files with 7 additions and 3 deletions

View File

@ -6,7 +6,7 @@ Turn JAR (java archive) into self-contained executable.
- automatically downloads java runtimes - automatically downloads java runtimes
- creates runtimes optimized for your application - creates runtimes optimized for your application
- creates self-contained binaries for Linux, MacOS and Windows using [warp-packer](https://github.com/dgiagio/warp) - creates self-contained binaries for Linux, macOS and Windows using [warp-packer](https://github.com/dgiagio/warp)
## TL;DR ## TL;DR
@ -79,7 +79,9 @@ Options:
--jvm-options <options> --jvm-options <options>
passed to java like this: passed to java like this:
"java <options> -jar <jar file>" "java <options> -jar <jar file>"
-h, --help show this help use quotes, for example:
'-Xms512m -Xmx1024m'
-h, --help show this message
``` ```
## Cache Location ## Cache Location

4
warp4j
View File

@ -27,7 +27,9 @@ function print_help {
echo ' --jvm-options <options>' echo ' --jvm-options <options>'
echo ' passed to java like this:' echo ' passed to java like this:'
echo ' "java <options> -jar <jar file>"' echo ' "java <options> -jar <jar file>"'
echo ' -h, --help show this help' echo ' use quotes, for example:'
echo " '-Xms512m -Xmx1024m'"
echo ' -h, --help show this message'
exit exit
} }