diff options
| author | Fred Hebert <mononcqc@ferd.ca> | 2015-08-27 07:29:08 +1200 |
|---|---|---|
| committer | Fred Hebert <mononcqc@ferd.ca> | 2015-08-27 07:29:08 +1200 |
| commit | bb14f2425763857e40aba9d8ce8299e5cc96a9a2 (patch) | |
| tree | 4483b595fa49e92829f7b25994e22382040af146 /src/rebar_app_discover.erl | |
| parent | 79d66de59c7a1673ce7374d45f5853a9f4aa3d91 (diff) | |
| parent | a27fd22c3fe1f71091dce27be3c71dc5b75ae2f0 (diff) | |
Merge pull request #748 from tsloughter/pkg_attribute
support pkg attribute on dep to declare package name different from app name
Diffstat (limited to 'src/rebar_app_discover.erl')
| -rw-r--r-- | src/rebar_app_discover.erl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rebar_app_discover.erl b/src/rebar_app_discover.erl index 2b1c767..5a25a9e 100644 --- a/src/rebar_app_discover.erl +++ b/src/rebar_app_discover.erl @@ -198,7 +198,7 @@ create_app_info(AppDir, AppFile) -> AppVsn = proplists:get_value(vsn, AppDetails), Applications = proplists:get_value(applications, AppDetails, []), IncludedApplications = proplists:get_value(included_applications, AppDetails, []), - {ok, AppInfo} = rebar_app_info:new(AppName, AppVsn, AppDir, []), + {ok, AppInfo} = rebar_app_info:new(AppName, AppVsn, AppDir), AppInfo1 = rebar_app_info:applications( rebar_app_info:app_details(AppInfo, AppDetails), IncludedApplications++Applications), |
