mirror of
https://github.com/correl/rebar.git
synced 2024-11-15 03:00:18 +00:00
28 lines
616 B
Text
28 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"}
|
|
]}.
|