钢筋包含外部库错误
rebar config:
{deps, [
{ibrowse, ".*",
{git, "git://github.com/cmullaparthi/ibrowse.git", "master"}}
]}.
make 时:
Uncaught error in rebar_core: {'EXIT',
{badarg,
[{re,run,[git,[],[{capture,none}]]},
{rebar_deps,is_app_available,3},
{rebar_deps,find_deps,3},
{rebar_deps,preprocess,2},
{rebar_core,acc_modules,5},
{rebar_core,process_dir,4},
{rebar_core,process_commands,1},
{rebar,main,1}]}}
make: * [all] 错误 1
为什么?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
你的配置文件对我有用,所以我建议执行以下操作:
make
如果您想直接使用 rebar使用 make 你可以这样做:
Your config file worked for me so I'd suggest doing the following:
make
If you want to use rebar directly instead of using make you can do:
我昨天也遇到了同样的错误,这是因为我使用的是旧版本的 rebar,或者可能是因为我使用的是在不同系统上编译的 rebar 版本。尝试使用最新版本的 erlang 和 rebar 重新编译 rebar。
I had this same error yesterday, and it was because I was using an older version of rebar, or perhaps because I was using a version of rebar compiled on a different system. Try recompiling rebar with the latest versions of both erlang and rebar.