rebar generate を実行して erlang rebar プロジェクトのリリースを生成しようとすると、次のエラーが発生します。私が間違っていることは何ですか?
./rebar generate
Command 'generate' not understood or not applicable
私はOSX上でerlangバージョン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, "."}]}}]}.