Erlang OTP 版本 18 不适用于 erlydtl
Erlang OTP release 18 does not work with erlydtl
将 Erlang OTP 从 17.5 更新到 18 后。
当运行 make 时显示如下错误:
ERROR: OTP release 18 does not match required regex
R15B0[^1]|R16B$|R16B[^0]|R16B0[^3]|R16B03-1|17 ERROR: compile failed
while processing /home/dev/bongthom/deps/eunit_formatters: rebar_abort
但是,如果我从 relx.conf 和 *.app.src
中删除 erlydtl 依赖项,它会起作用
关于这个问题有什么建议吗?
如果您不想修改erlydtl.app.src,则设置此约束here. So maybe you would want just to delete this line (or better if you are using rebar, just use overrides mechanism。
另外,我建议您 运行 erlydtl 测试以确保东西确实有效(但不仅仅是编译)。
将 Erlang OTP 从 17.5 更新到 18 后。 当运行 make 时显示如下错误:
ERROR: OTP release 18 does not match required regex R15B0[^1]|R16B$|R16B[^0]|R16B0[^3]|R16B03-1|17 ERROR: compile failed while processing /home/dev/bongthom/deps/eunit_formatters: rebar_abort
但是,如果我从 relx.conf 和 *.app.src
中删除 erlydtl 依赖项,它会起作用关于这个问题有什么建议吗?
如果您不想修改erlydtl.app.src,则设置此约束here. So maybe you would want just to delete this line (or better if you are using rebar, just use overrides mechanism。
另外,我建议您 运行 erlydtl 测试以确保东西确实有效(但不仅仅是编译)。