Packages
An Erlang DNS message library that supports most common record types, TSIG authenticated messages, EDNS0 and DNSSEC.
Current section
Files
Jump to
Current section
Files
include/rebar_version.hrl
-ifndef('REBAR_VERSION').
-define(REBAR_VERSION, "3").
-endif.
rebar_version() ->
case string:sub_string(?REBAR_VERSION, 1, 1) of
"3" ->
3;
"2" ->
2
end.
prefix() ->
case rebar_version() of
2 ->
"../priv/";
3 ->
"priv"
end.