blob: 898dab724a29d5215ddcb83cc8d2c1168d2b2286 (
plain)
1
2
3
4
5
6
7
|
#!/usr/bin/env escript
%% -*- erlang -*-
main([dest_dir]) ->
{ok, Conf} = file:consult("reltool.config"),
{ok, Spec} = reltool:get_target_spec(Conf),
ok = reltool:eval_target_spec(Spec, code:root_dir(), dest_dir).
|