Procházet zdrojové kódy

Fix for cases with no proxy configured.

pull/579/head
CarlosEDP před 10 roky
rodič
revize
46ca2bb6b0
2 změnil soubory, kde provedl 2 přidání a 2 odebrání
  1. +1
    -1
      bootstrap
  2. +1
    -1
      src/rebar_utils.erl

+ 1
- 1
bootstrap Zobrazit soubor

@ -103,7 +103,7 @@ get_http_var() ->
end.
get_http(Scheme) ->
proplists:get_value(Scheme, get_http_var(), "").
proplists:get_value(Scheme, get_http_var(), []).
set_httpc_options() ->
set_httpc_options(https_proxy, get_http(https_proxy)),

+ 1
- 1
src/rebar_utils.erl Zobrazit soubor

@ -674,7 +674,7 @@ get_http_var() ->
end.
get_http(Scheme) ->
proplists:get_value(Scheme, get_http_var(), "").
proplists:get_value(Scheme, get_http_var(), []).
set_httpc_options() ->
set_httpc_options(https_proxy, get_http(https_proxy)),

Načítá se…
Zrušit
Uložit