mirror of
https://github.com/correl/rebar.git
synced 2024-11-15 03:00:18 +00:00
Removing some unnecessary debugging messages
--HG-- extra : rebase_source : 05a045be5aed66ee292e6f5896ab6de71d4a2128
This commit is contained in:
parent
5ec8918636
commit
dfb0d87658
1 changed files with 0 additions and 2 deletions
|
@ -48,13 +48,11 @@ is_app_dir(Dir) ->
|
|||
AppSrc = filename:join(Dir, "src/*.app.src"),
|
||||
case filelib:wildcard(AppSrc) of
|
||||
[AppSrcFile] ->
|
||||
?DEBUG("Found app.src: ~p\n", [AppSrcFile]),
|
||||
{true, AppSrcFile};
|
||||
_ ->
|
||||
App = filename:join([Dir, "ebin/*.app"]),
|
||||
case filelib:wildcard(App) of
|
||||
[AppFile] ->
|
||||
?DEBUG("Found .app: ~p\n", [AppFile]),
|
||||
{true, AppFile};
|
||||
_ ->
|
||||
false
|
||||
|
|
Loading…
Reference in a new issue