diff options
author | Eric Merritt <[email protected]> | 2013-09-13 15:01:51 -0700 |
---|---|---|
committer | Eric Merritt <[email protected]> | 2013-09-13 15:01:51 -0700 |
commit | 9a863c5924d787c5ce368fa9e98037714ba054d3 (patch) | |
tree | 5ac94bf5ec27708c85db84a96ad95e3847f52c3c /src/rlx_util.erl | |
parent | 2da2a7fe52993d572a66ae4bd69f32ef1912b1ec (diff) | |
parent | 01504d1fb05430bc0fe5f2b30ebd57747a080d84 (diff) | |
download | relx-9a863c5924d787c5ce368fa9e98037714ba054d3.tar.gz relx-9a863c5924d787c5ce368fa9e98037714ba054d3.tar.bz2 relx-9a863c5924d787c5ce368fa9e98037714ba054d3.zip |
replace use of wildcard ** since it is not in <R16 Erlang
Diffstat (limited to 'src/rlx_util.erl')
-rw-r--r-- | src/rlx_util.erl | 16 |
1 files changed, 1 insertions, 15 deletions
diff --git a/src/rlx_util.erl b/src/rlx_util.erl index c821896..ac6af5c 100644 --- a/src/rlx_util.erl +++ b/src/rlx_util.erl @@ -21,8 +21,7 @@ %%% @doc Trivial utility file to help handle common tasks -module(rlx_util). --export([delete_dir/1, - mkdir_p/1, +-export([mkdir_p/1, to_binary/1, to_string/1, to_atom/1, @@ -40,19 +39,6 @@ %%============================================================================ %% API %%============================================================================ -%% @doc Deletes non-empty directory -delete_dir(Path) -> - lists:foldr(fun(File, ok) -> - case filelib:is_dir(File) of - true -> - file:del_dir(File); - false -> - file:delete(File) - end - end, ok, filelib:wildcard(filename:join(Path, "**"))), - ok = file:del_dir(Path). - - %% @doc Makes a directory including parent dirs if they are missing. -spec mkdir_p(string()) -> ok | {error, Reason::file:posix()}. mkdir_p(Path) -> |