diff options
author | Tristan Sloughter <[email protected]> | 2014-11-02 08:06:52 -0600 |
---|---|---|
committer | Tristan Sloughter <[email protected]> | 2014-11-02 08:06:52 -0600 |
commit | 9b88efae84344abfb601280de4028b3dfe094e2f (patch) | |
tree | bb6b32a11e0679b4e37a56881611db1306378722 /src/relx.erl | |
parent | 016976897769572b8dd1cddc1fc9708c8d4bb306 (diff) | |
parent | 5028ef9e0e4a3f505da19c005800f273af671534 (diff) | |
download | relx-9b88efae84344abfb601280de4028b3dfe094e2f.tar.gz relx-9b88efae84344abfb601280de4028b3dfe094e2f.tar.bz2 relx-9b88efae84344abfb601280de4028b3dfe094e2f.zip |
Merge pull request #248 from ichernetsky/master
Allow to specify a path to vm.args through command-line arguments
Diffstat (limited to 'src/relx.erl')
-rw-r--r-- | src/relx.erl | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/relx.erl b/src/relx.erl index 37918be..433e0a5 100644 --- a/src/relx.erl +++ b/src/relx.erl @@ -210,6 +210,7 @@ opt_spec_list() -> "Provide an app name and a directory to override in the form <appname>:<app directory>"}, {config, $c, "config", {string, ""}, "The path to a config file"}, {overlay_vars, undefined, "overlay_vars", string, "Path to a file of overlay variables"}, + {vm_args, undefined, "vm_args", string, "Path to a file to use for vm.args"}, {sys_config, undefined, "sys_config", string, "Path to a file to use for sys.config"}, {system_libs, undefined, "system_libs", string, "Path to dir of Erlang system libs"}, {version, undefined, "version", undefined, "Print relx version"}, |