diff options
author | Tristan Sloughter <t@crashfast.com> | 2015-09-10 17:27:03 -0500 |
---|---|---|
committer | Tristan Sloughter <t@crashfast.com> | 2015-09-10 17:27:03 -0500 |
commit | a3a590947ad5fb49c5c8717fb47f03da08e6036c (patch) | |
tree | 777e53ca93f659186b3ae16b1ef11df3c636b249 | |
parent | e5b8a97c5f1bf4968cfd545945fb37ab7386cab4 (diff) |
fix rebar3 url for upgrade
-rw-r--r-- | src/rebar_prv_local_upgrade.erl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rebar_prv_local_upgrade.erl b/src/rebar_prv_local_upgrade.erl index 9431524..9293bc0 100644 --- a/src/rebar_prv_local_upgrade.erl +++ b/src/rebar_prv_local_upgrade.erl @@ -72,7 +72,7 @@ get_md5(Rebar3Path) -> maybe_fetch_rebar3(Rebar3Md5) -> TmpDir = ec_file:insecure_mkdtemp(), TmpFile = filename:join(TmpDir, "rebar3"), - case rebar_pkg_resource:request("https://s3.amazonaws.com/rebar3/rebar4", Rebar3Md5) of + case rebar_pkg_resource:request("https://s3.amazonaws.com/rebar3/rebar3", Rebar3Md5) of {ok, Binary, _ETag} -> file:write_file(TmpFile, Binary), {saved, TmpFile}; |