diff options
author | Tristan Sloughter <t@crashfast.com> | 2014-09-02 18:29:29 -0500 |
---|---|---|
committer | Tristan Sloughter <t@crashfast.com> | 2014-09-02 18:29:29 -0500 |
commit | 5373b56bfa199f8db4caead2ec28f9a6a87e2e83 (patch) | |
tree | f1b4e892cbe9d2b0cf4e2a839321b42b35384d33 /src/rebar_lock.erl | |
parent | d2cd52c3d265f76a4faae60a258b54baf4010ec8 (diff) |
move locking to a provider
Diffstat (limited to 'src/rebar_lock.erl')
-rw-r--r-- | src/rebar_lock.erl | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/src/rebar_lock.erl b/src/rebar_lock.erl deleted file mode 100644 index 2a54600..0000000 --- a/src/rebar_lock.erl +++ /dev/null @@ -1,7 +0,0 @@ --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])). |