Browse Source

rebar.config

Maxim Sokhatsky 10 years ago
parent
commit
8881f04822
2 changed files with 1 additions and 1 deletions
  1. BIN
      mad
  2. 1 1
      src/mad_plan.erl

BIN
mad


+ 1 - 1
src/mad_plan.erl

@@ -7,7 +7,7 @@ applist() ->
     case file:read_file(".applist") of
          {ok,Binary} -> parse_applist(binary_to_list(Binary)); 
          {error,Reason} -> main([ list_to_atom(filename:basename(App))
-                || App <- filelib:wildcard("{apps,deps}/*/")] -- disabled()) end.
+                || App <- filelib:wildcard("{apps,deps}/*/")] -- ['rebar.conifg']) end.
 
 parse_applist(AppList) -> 
    Res = string:tokens(string:strip(string:strip(AppList,right,$]),left,$[),","),