Browse Source

Removing some unnecessary debugging messages

--HG--
extra : rebase_source : 05a045be5a
Dave Smith 15 years ago
parent
commit
dfb0d87658
1 changed files with 0 additions and 2 deletions
  1. +0
    -2
      src/rebar_app_utils.erl

+ 0
- 2
src/rebar_app_utils.erl View File

@ -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…
Cancel
Save