Selaa lähdekoodia

Remove unused fun rebar_utils:get_os/0

pull/3/head
Tuncer Ayaz 14 vuotta sitten
vanhempi
commit
220eec71f6
1 muutettua tiedostoa jossa 0 lisäystä ja 20 poistoa
  1. +0
    -20
      src/rebar_utils.erl

+ 0
- 20
src/rebar_utils.erl Näytä tiedosto

@ -29,7 +29,6 @@
-export([get_cwd/0,
is_arch/1,
get_arch/0,
get_os/0,
sh/2,
find_files/2,
now_str/0,
@ -63,15 +62,6 @@ get_arch() ->
Words = integer_to_list(8 * erlang:system_info(wordsize)),
erlang:system_info(system_architecture) ++ "-" ++ Words.
get_os() ->
Arch = erlang:system_info(system_architecture),
case match_first([{"linux", linux}, {"darwin", darwin}], Arch) of
nomatch ->
{unknown, Arch};
ArchAtom ->
ArchAtom
end.
%%
%% Options = [Option] -- defaults to [use_stdout, abort_on_error]
%% Option = ErrorOption | OutputOption | {cd, string()} | {env, Env}
@ -164,16 +154,6 @@ find_executable(Name) ->
%% Internal functions
%% ====================================================================
match_first([], _Val) ->
nomatch;
match_first([{Regex, MatchValue} | Rest], Val) ->
case re:run(Val, Regex, [{capture, none}]) of
match ->
MatchValue;
nomatch ->
match_first(Rest, Val)
end.
expand_sh_flag(return_on_error) ->
{error_handler,
fun(_Command, Rc) ->

Ladataan…
Peruuta
Tallenna