Reltool将我不想要的文件复制到发行版中

时间:2017-10-18 20:12:25

标签: erlang reltool

我有以下.config文件:

{sys, [
    {lib_dirs, ["/Users/dan/learn_you_some_erlang/erlcount"]},
    {rel, "erlcount", "1.0.0", [
            kernel,
            stdlib,
            {ppool, permanent},
            {erlcount, transient}
        ]},
    {boot_rel, "erlcount"},
    {erts, [
        {mod_cond, derived},
        {app_file, strip}]},
    {profile, embedded}
]}.

当我运行reltool时,我得到一个目录erts-9.1 / doc,其中包含一本400页的关于Erlang的书(除其他外)。我怎么摆脱这个?

我尝试将{excl_sys_filters, ["^doc"]}添加到erts选项,但收到错误“非法选项:{excl_sys_filters,[\”^ doc \“]}”

2 个答案:

答案 0 :(得分:0)

我认为你使用了错误的格式,希望这个例子的链接可以帮到你 reltool_examples

答案 1 :(得分:0)

我已经转而使用relx,它没有这个问题,而且总的来说更好。