Skip to content

Commit

Permalink
do not fail on toplevel app builds
Browse files Browse the repository at this point in the history
  • Loading branch information
proger committed Sep 9, 2013
1 parent 6fc71fa commit 003697b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/active.erl
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ path_modified_event([P, Name|Px] = _Path) when P =:= "apps"; P =:= "deps" ->
app_modified_event(Name, Px);

path_modified_event([D|Px] = _Path) when D =:= "src"; D =:= "priv"; D =:= "c_src"; D =:= "ebin" ->
app_modified_event(toplevel_app(), Px);
app_modified_event(toplevel_app(), [D|Px]);

path_modified_event(P) ->
error_logger:warning_msg("active: unhandled path: ~p", [P]),
Expand Down

0 comments on commit 003697b

Please sign in to comment.