Skip to content

Commit

Permalink
ext_mod: Handle case when contrib module has no *.ex and no *.erl
Browse files Browse the repository at this point in the history
  • Loading branch information
badlop committed Jul 2, 2024
1 parent 4258d3d commit 543b874
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ext_mod.erl
Original file line number Diff line number Diff line change
Expand Up @@ -1195,7 +1195,7 @@ is_elixir_module(Module) ->
filelib:wildcard(Src++"/*.{erl}")} of
{[_ | _], []} ->
true;
{[], [_ | _]} ->
{[], _} ->
false
end.

Expand Down

0 comments on commit 543b874

Please sign in to comment.