Skip to content

Commit

Permalink
Check for .app.src first
Browse files Browse the repository at this point in the history
  • Loading branch information
Tuncer Ayaz committed Jan 13, 2012
1 parent eab5ae5 commit 5b15c85
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/rebar_core.erl
Expand Up @@ -124,8 +124,8 @@ maybe_process_dir({[], undefined}=ModuleSet, Config, CurrentCodePath,
process_dir0(Dir, Command, DirSet, Config, CurrentCodePath, ModuleSet);
maybe_process_dir({_, ModuleSetFile}=ModuleSet, Config, CurrentCodePath,
Dir, Command, DirSet) ->
case lists:suffix(".app", ModuleSetFile)
orelse lists:suffix(".app.src", ModuleSetFile) of
case lists:suffix(".app.src", ModuleSetFile)
orelse lists:suffix(".app", ModuleSetFile) of
true ->
%% .app or .app.src file, check if is_skipped_app
maybe_process_dir0(ModuleSetFile, ModuleSet,
Expand Down

0 comments on commit 5b15c85

Please sign in to comment.