summaryrefslogtreecommitdiff
path: root/src/rebar_lock.erl
blob: 2a5460083513c0b05de8a4c78f6e79b9da8b5db4 (plain)
1
2
3
4
5
6
7
-module(rebar_lock).

-export([create/1]).

create(State) ->
    LockDeps = rebar_state:get(State, locks, []),
    ok = file:write_file("./rebar.lock", io_lib:format("~p.~n", [LockDeps])).