我有一个包含此deps条目的rebar.config:
{cowboy, ".*", {git, "http://github.com/extend/cowboy.git", {branch, "master"}}}
当我运行“钢筋编译”时,我得到了这个:
Dependency not available: cowboy-.* ({git,
"http://github.com/extend/cowboy.git",
{branch,"master"}})
我相信这是因为我在防火墙后面,我访问互联网的唯一方法是通过http代理。有没有办法设置钢筋使用http代理?
答案 0 :(得分:1)
当deps元组包含{git, "http://..."}
时,似乎rebar使用git来获取依赖项。所以我通过在.gitconfig
中添加它来解决这个问题:
[http]
proxy = http://myproxy-url.com:8080