11
我試圖運行鋼筋生成以生成erlang螺紋鋼項目的版本並獲取以下錯誤。任何想法我做錯了什麼?命令'生成'不理解或不適用
./rebar generate
Command 'generate' not understood or not applicable
我在OSX使用Erlang版本二郎R14B03以下是我的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, "."}]}}]}.
請注意:'fail_on_warning'已被棄用(在R16中不做任何事情),並且您應該使用'warnings_as_errors'。 – 2013-12-06 10:14:45