diff options
author | Tristan Sloughter <[email protected]> | 2014-06-13 16:46:49 -0500 |
---|---|---|
committer | Tristan Sloughter <[email protected]> | 2014-06-13 16:46:49 -0500 |
commit | b03cc42ed180d14b9aa6c0b9e5fae1005973d353 (patch) | |
tree | 0f0aa92b0bd6ea1b81858c8b41c56f7625b447a7 /src | |
parent | da5647399b0985530dd2d223ea0ae577f9c6da6e (diff) | |
download | relx-b03cc42ed180d14b9aa6c0b9e5fae1005973d353.tar.gz relx-b03cc42ed180d14b9aa6c0b9e5fae1005973d353.tar.bz2 relx-b03cc42ed180d14b9aa6c0b9e5fae1005973d353.zip |
remove defaults from getopts config for dev_mode and default_libs
Diffstat (limited to 'src')
-rw-r--r-- | src/relx.erl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/relx.erl b/src/relx.erl index a48e3dd..6216ab1 100644 --- a/src/relx.erl +++ b/src/relx.erl @@ -193,11 +193,11 @@ opt_spec_list() -> {path, $p, "path", string, "Additional dir to add to the code path"}, {default_libs, undefined, "default-libs", - {boolean, true}, + boolean, "Whether to use the default system added lib dirs (means you must add them all manually). Default is true"}, {log_level, $V, "verbose", {integer, 2}, "Verbosity level, maybe between 0 and 3"}, - {dev_mode, $d, "dev-mode", {boolean, false}, + {dev_mode, $d, "dev-mode", boolean, "Symlink the applications and configuration into the release instead of copying"}, {override, $a, "override", string, "Provide an app name and a directory to override in the form <appname>:<app directory>"}, |