mirror of
https://github.com/correl/rebar.git
synced 2024-11-15 11:09:33 +00:00
29 lines
616 B
Text
29 lines
616 B
Text
|
{sys, [
|
||
|
{lib_dirs, []},
|
||
|
{rel, "{{nodeid}}", "1",
|
||
|
[
|
||
|
kernel,
|
||
|
stdlib,
|
||
|
sasl
|
||
|
]},
|
||
|
{rel, "start_clean", "",
|
||
|
[
|
||
|
kernel,
|
||
|
stdlib
|
||
|
]},
|
||
|
{boot_rel, "{{nodeid}}"},
|
||
|
{profile, embedded},
|
||
|
{excl_sys_filters, ["^bin/.*",
|
||
|
"^erts.*/bin/(dialyzer|typer)"]},
|
||
|
{app, riak, [{incl_cond, include}]},
|
||
|
{app, sasl, [{incl_cond, include}]}
|
||
|
]}.
|
||
|
|
||
|
{rebar, [
|
||
|
{empty_dirs, [
|
||
|
"log/sasl"
|
||
|
]},
|
||
|
|
||
|
{overlay, "overlay"}
|
||
|
]}.
|