summaryrefslogtreecommitdiff
path: root/src/rebar_lock.erl
diff options
context:
space:
mode:
authorTristan Sloughter <t@crashfast.com>2014-09-02 18:29:29 -0500
committerTristan Sloughter <t@crashfast.com>2014-09-02 18:29:29 -0500
commit5373b56bfa199f8db4caead2ec28f9a6a87e2e83 (patch)
treef1b4e892cbe9d2b0cf4e2a839321b42b35384d33 /src/rebar_lock.erl
parentd2cd52c3d265f76a4faae60a258b54baf4010ec8 (diff)
move locking to a provider
Diffstat (limited to 'src/rebar_lock.erl')
-rw-r--r--src/rebar_lock.erl7
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])).