소스 검색

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

불러오는 중...
취소
저장