Skip to content

Commit d4609c6

Browse files
author
José Valim
committed
Get rid of elixir_glob now that we run on > R16
1 parent f29c6af commit d4609c6

File tree

2 files changed

+2
-286
lines changed

2 files changed

+2
-286
lines changed

lib/elixir/lib/path.ex

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -471,12 +471,12 @@ defmodule Path do
471471
472472
"""
473473
def wildcard(glob) when is_binary(glob) do
474-
paths = :elixir_glob.wildcard :unicode.characters_to_list(glob)
474+
paths = :filelib.wildcard :unicode.characters_to_list(glob)
475475
Enum.map paths, :unicode.characters_to_binary(&1)
476476
end
477477

478478
def wildcard(glob) when is_list(glob) do
479-
:elixir_glob.wildcard glob
479+
:filelib.wildcard glob
480480
end
481481

482482
## Helpers

lib/elixir/src/elixir_glob.erl

Lines changed: 0 additions & 284 deletions
This file was deleted.

0 commit comments

Comments
 (0)