summaryrefslogtreecommitdiff
path: root/src/rebar_prv_update.erl
diff options
context:
space:
mode:
authorTristan Sloughter <t@crashfast.com>2014-08-27 09:43:22 -0500
committerTristan Sloughter <t@crashfast.com>2014-08-27 09:54:25 -0500
commit2523b93ebc5795a2c0363e3d92e78437ec7a77ef (patch)
tree392557e1649586928b376fd333ab2c3bc6d2a89f /src/rebar_prv_update.erl
parentf17812d963b34c8157df44a4dee8380a581aa200 (diff)
update package index url and README list of tasks
Diffstat (limited to 'src/rebar_prv_update.erl')
-rw-r--r--src/rebar_prv_update.erl3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/rebar_prv_update.erl b/src/rebar_prv_update.erl
index 834e03f..081a3b0 100644
--- a/src/rebar_prv_update.erl
+++ b/src/rebar_prv_update.erl
@@ -52,7 +52,7 @@ do(State) ->
{ok, State1};
[] ->
?INFO("Updating package index...", []),
- Url = rebar_state:get(State, rebar_packages_url, "http://localhost:8080"),
+ Url = rebar_state:get(State, rebar_packages_url, "http://polar-caverns-6802.herokuapp.com/"),
ec_file:mkdir_p(filename:join([os:getenv("HOME"), ".rebar"])),
PackagesFile = filename:join([os:getenv("HOME"), ".rebar", "packages"]),
{ok, RequestId} = httpc:request(get, {Url, []}, [], [{stream, PackagesFile}, {sync, false}]),
@@ -62,7 +62,6 @@ do(State) ->
wait(RequestId, State) ->
receive
{http, {RequestId, saved_to_file}} ->
- io:format("~n"),
{ok, State}
after
500 ->