Skip to content

Commit

Permalink
remove providers dep
Browse files Browse the repository at this point in the history
  • Loading branch information
tsloughter committed Jun 1, 2015
1 parent 9ac9378 commit 8f38010
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 8 deletions.
3 changes: 1 addition & 2 deletions rebar.config
Original file line number Diff line number Diff line change
@@ -1,3 +1,2 @@
{erl_opts, [debug_info]}.
{deps, [{providers, "1.3.1"}
,{cuttlefish, {git, "git://github.com/tsloughter/cuttlefish", {branch, "develop"}}}]}.
{deps, [{cuttlefish, {git, "git://github.com/tsloughter/cuttlefish", {branch, "develop"}}}]}.
3 changes: 1 addition & 2 deletions rebar.lock
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
[{<<"providers">>,{pkg,<<"providers">>,<<"1.3.1">>},0},
{<<"goldrush">>,
[{<<"goldrush">>,
{git,"git://github.com/DeadZen/goldrush.git",
{ref,"71e63212f12c25827e0c1b4198d37d5d018a7fec"}},
2},
Expand Down
1 change: 0 additions & 1 deletion src/rebar3_cuttlefish.app.src
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
{applications,
[kernel,
stdlib,
providers,
cuttlefish
]},
{env,[]},
Expand Down
4 changes: 1 addition & 3 deletions src/rebar3_cuttlefish.erl
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,6 @@
,do/1
,format_error/1]).

-include_lib("providers/include/providers.hrl").

-define(PROVIDER, cuttlefish).
-define(DEPS, [app_discovery]).

Expand Down Expand Up @@ -51,7 +49,7 @@ do(State) ->
false ->
{ok, State};
_ ->
?PRV_ERROR({bad_overlay_entry})
{error, {?MODULE, {bad_overlay_entry}}}

end.

Expand Down

0 comments on commit 8f38010

Please sign in to comment.