ソースを参照

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

Expand os ENV proxy support to bootstrap script
pull/1231/head
Fred Hebert 9年前
committed by GitHub
コミット
e337793e9f
1個のファイルの変更5行の追加1行の削除
  1. +5
    -1
      bootstrap

+ 5
- 1
bootstrap ファイルの表示

@ -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)),

読み込み中…
キャンセル
保存