diff options
author | Eric B Merritt <[email protected]> | 2013-05-03 09:17:35 -0700 |
---|---|---|
committer | Eric <[email protected]> | 2013-05-09 16:43:59 -0700 |
commit | 0d5a803a28010cc956948b614408b9d38997e9a1 (patch) | |
tree | 56f23e0b7158f2dc2f7d5fc8782bfb0c87c781e4 /src/relcool.erl | |
parent | e68bbac546e084b4949dc01cbe88c03f6c667139 (diff) | |
download | relx-0d5a803a28010cc956948b614408b9d38997e9a1.tar.gz relx-0d5a803a28010cc956948b614408b9d38997e9a1.tar.bz2 relx-0d5a803a28010cc956948b614408b9d38997e9a1.zip |
support the creation or relups
Diffstat (limited to 'src/relcool.erl')
-rw-r--r-- | src/relcool.erl | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/relcool.erl b/src/relcool.erl index 0079529..c404e6f 100644 --- a/src/relcool.erl +++ b/src/relcool.erl @@ -21,6 +21,7 @@ -module(relcool). -export([main/1, + do/2, do/7, do/8, do/9, @@ -169,6 +170,8 @@ opt_spec_list() -> {relvsn, $v, "relvsn", string, "Specify the version for the release"}, {goal, $g, "goal", string, "Specify a target constraint on the system. These are usually the OTP"}, + {upfrom, $u, "upfrom", string, + "Only valid with relup target, specify the release to upgrade from"}, {output_dir, $o, "output-dir", string, "The output directory for the release. This is `./` by default."}, {lib_dir, $l, "lib-dir", string, |