mirror of
https://github.com/correl/rebar.git
synced 2024-12-18 03:00:17 +00:00
Extend app resource file existence checks
This commit is contained in:
parent
5f2930b701
commit
f08f13d103
1 changed files with 12 additions and 4 deletions
|
@ -45,18 +45,26 @@ is_app_dir() ->
|
|||
is_app_dir(rebar_utils:get_cwd()).
|
||||
|
||||
is_app_dir(Dir) ->
|
||||
AppSrc = filename:join([Dir, "src", "*.app.src"]),
|
||||
SrcDir = filename:join([Dir, "src"]),
|
||||
AppSrc = filename:join([SrcDir, "*.app.src"]),
|
||||
case filelib:wildcard(AppSrc) of
|
||||
[AppSrcFile] ->
|
||||
{true, AppSrcFile};
|
||||
_ ->
|
||||
App = filename:join([Dir, "ebin", "*.app"]),
|
||||
[] ->
|
||||
EbinDir = filename:join([Dir, "ebin"]),
|
||||
App = filename:join([EbinDir, "*.app"]),
|
||||
case filelib:wildcard(App) of
|
||||
[AppFile] ->
|
||||
{true, AppFile};
|
||||
[] ->
|
||||
false;
|
||||
_ ->
|
||||
?ERROR("More than one .app file in ~s~n", [EbinDir]),
|
||||
false
|
||||
end
|
||||
end;
|
||||
_ ->
|
||||
?ERROR("More than one .app.src file in ~s~n", [SrcDir]),
|
||||
false
|
||||
end.
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue