使用 JavaScript能使本网站更好的工作。
首页
探索
帮助
注册
登录
SisMaker
/
rebar3
关注
1
点赞
0
派生
0
代码
工单
0
合并请求
0
项目
0
版本发布
62
百科
动态
浏览代码
Fix for cases with no proxy configured.
pull/579/head
CarlosEDP
10 年前
父节点
9a20d3b56a
当前提交
46ca2bb6b0
共有
2 个文件被更改
,包括
2 次插入
和
2 次删除
分列视图
Diff 选项
显示统计
下载 Patch 文件
下载 Diff 文件
+1
-1
bootstrap
+1
-1
src/rebar_utils.erl
+ 1
- 1
bootstrap
查看文件
@ -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
查看文件
@ -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
)
)
,
撰写
预览
正在加载...
取消
保存