mirror of
https://github.com/correl/rebar.git
synced 2024-12-18 11:06:20 +00:00
Merge pull request #97 from tdx/tdx-appup-new-app
Skip appup generation for new app in release
This commit is contained in:
commit
16fe8c09e5
1 changed files with 2 additions and 0 deletions
|
@ -128,6 +128,8 @@ genappup_which_apps(UpgradedApps, [First|Rest]) ->
|
|||
genappup_which_apps(Apps, []) ->
|
||||
Apps.
|
||||
|
||||
generate_appup_files(NewVerPath, OldVerPath, [{_App, {undefined, _}}|Rest]) ->
|
||||
generate_appup_files(NewVerPath, OldVerPath, Rest);
|
||||
generate_appup_files(NewVerPath, OldVerPath, [{App, {OldVer, NewVer}}|Rest]) ->
|
||||
OldEbinDir = filename:join([OldVerPath, "lib",
|
||||
atom_to_list(App) ++ "-" ++ OldVer, "ebin"]),
|
||||
|
|
Loading…
Reference in a new issue