Skip to content

Commit

Permalink
ignore mc files
Browse files Browse the repository at this point in the history
  • Loading branch information
5HT committed Aug 8, 2014
1 parent 25d9800 commit d0cdff0
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/active.erl
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,9 @@ app(App,["priv","fdlink"++_]) -> skip;
app(App,["priv","mac"++_]) -> skip;
app(App,["priv","windows"++_]) -> skip;
app(App,["priv","linux"++_]) -> skip;
app(App,["priv"|_]) -> compile(App);
app(App,Path=["priv"|_]) -> case hd(lists:reverse(Path)) of
".#" ++ _ -> skip; % mc temp files
Else -> compile(App) end;
app(App,["include"|_]) -> compile(App);
app(App,["src"|_]) -> compile(App);
app(_,_)-> ok.
Expand Down

0 comments on commit d0cdff0

Please sign in to comment.