Command 'generate' not understood or not applicable

三世轮回 提交于 2019-12-10 01:52:19

问题


I am trying to run rebar generate to generate a release for an erlang rebar project and getting the following error. Any ideas what I am doing wrong?

./rebar generate
Command 'generate' not understood or not applicable

I am on OSX with erlang version Erlang R14B03 and below is my rebar.conf

{lib_dirs, ["deps"]}.
{sub_dirs, ["rel"]}.
{deps, [
       {folsom, ".*", {git, "git://github.com/boundary/folsom", "master"}}
       ]}.

{require_otp_vsn, "R14|R15"}.

{erl_opts, [
            fail_on_warning, 
            debug_info, 
            warn_missing_spec
       ]}.

{clean_files, ["*.eunit", "ebin/*.beam", "rel/graphsom"]}.

{cover_enabled, true}.

{eunit_opts, [verbose, {report, {eunit_surefire, [{dir, "."}]}}]}.

回答1:


You are getting this error because rebar is unable to find a release. You should check if you have reltool.config somewhere and rebar knows about it.

If no release exists, you can create a new one:

mkdir rel
cd rel
../rebar create-node nodeid=YOUR_NODE_ID

Lastly, you need to tell rebar about the release. In your case, you already have the following added to rebar.config:

{sub_dirs, ["rel"]}.

This should allow the generate command to build a new release.



来源:https://stackoverflow.com/questions/9343630/command-generate-not-understood-or-not-applicable

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!