diff options
author | Tristan Sloughter <[email protected]> | 2013-09-18 20:49:38 -0500 |
---|---|---|
committer | Tristan Sloughter <[email protected]> | 2013-09-19 20:26:25 -0500 |
commit | c0a18117ddaff70e93411df060e1d7c7d1ad1b92 (patch) | |
tree | 7b521174bcd7ddf731b54b52cf04adeded7c3f86 /src/relx.erl | |
parent | 0d1dfed1ac0a1868d943e0174fce9f8bf49e448b (diff) | |
download | relx-c0a18117ddaff70e93411df060e1d7c7d1ad1b92.tar.gz relx-c0a18117ddaff70e93411df060e1d7c7d1ad1b92.tar.bz2 relx-c0a18117ddaff70e93411df060e1d7c7d1ad1b92.zip |
add -p for setting code paths
Diffstat (limited to 'src/relx.erl')
-rw-r--r-- | src/relx.erl | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/relx.erl b/src/relx.erl index bc3fbaa..bc311f5 100644 --- a/src/relx.erl +++ b/src/relx.erl @@ -182,7 +182,9 @@ opt_spec_list() -> {help, $h, "help", undefined, "Print usage"}, {lib_dir, $l, "lib-dir", string, - "Additional dirs that should be searched for OTP Apps"}, + "Additional dir that should be searched for OTP Apps"}, + {path, $p, "path", string, + "Additional dir to add to the code path"}, {disable_default_libs, undefined, "disable-default-libs", {boolean, false}, "Disable the default system added lib dirs (means you must add them all manually"}, |