mirror of
https://github.com/correl/rebar.git
synced 2024-11-14 19:19:30 +00:00
Merge pull request #183 from EchoTeam/generate-upgrade-and-target-dir
generate-upgrade can now take target_dir argument
This commit is contained in:
commit
d75af5266d
1 changed files with 3 additions and 5 deletions
|
@ -87,7 +87,8 @@ info(help, 'generate-upgrade') ->
|
|||
?CONSOLE("Build an upgrade package.~n"
|
||||
"~n"
|
||||
"Valid command line options:~n"
|
||||
" previous_release=path~n",
|
||||
" previous_release=path~n"
|
||||
" target_dir=target_dir (optional)~n",
|
||||
[]).
|
||||
|
||||
run_checks(Config, OldVerPath, ReltoolConfig) ->
|
||||
|
@ -97,10 +98,7 @@ run_checks(Config, OldVerPath, ReltoolConfig) ->
|
|||
|
||||
{Name, Ver} = rebar_rel_utils:get_reltool_release_info(ReltoolConfig),
|
||||
|
||||
NewVerPath =
|
||||
filename:join(
|
||||
[rebar_rel_utils:get_target_parent_dir(Config, ReltoolConfig),
|
||||
Name]),
|
||||
NewVerPath = rebar_rel_utils:get_target_dir(Config, ReltoolConfig),
|
||||
true = rebar_utils:prop_check(filelib:is_dir(NewVerPath),
|
||||
"Release directory doesn't exist (~p)~n",
|
||||
[NewVerPath]),
|
||||
|
|
Loading…
Reference in a new issue