Selaa lähdekoodia

Merge pull request #1230 from ferd/support-env-proxy-vars

Expand os ENV proxy support to bootstrap script
pull/1231/head
Fred Hebert 9 vuotta sitten
committed by GitHub
vanhempi
commit
e337793e9f
1 muutettua tiedostoa jossa 5 lisäystä ja 1 poistoa
  1. +5
    -1
      bootstrap

+ 5
- 1
bootstrap Näytä tiedosto

@ -133,7 +133,11 @@ get_rebar_config() ->
end.
get_http_vars(Scheme) ->
proplists:get_value(Scheme, get_rebar_config(), []).
OS = case os:getenv(atom_to_list(Scheme)) of
Str when is_list(Str) -> Str;
_ -> []
end,
proplists:get_value(Scheme, get_rebar_config(), OS).
set_httpc_options() ->
set_httpc_options(https_proxy, get_http_vars(https_proxy)),

Ladataan…
Peruuta
Tallenna