diff options
author | Dave Smith <dizzyd@dizzyd.com> | 2013-03-02 06:52:57 -0800 |
---|---|---|
committer | Dave Smith <dizzyd@dizzyd.com> | 2013-03-02 06:52:57 -0800 |
commit | eacfc1160ada693cf587d5806cdc34d65f085b99 (patch) | |
tree | 40f16d6ee2380edc786093ed667eca1b7b909e5f | |
parent | c057c7771ec7cbfd6e6641fc169cd3930d11829c (diff) | |
parent | dc2f5c8c7b84d1ebd76209df1978ead69ce1ebc0 (diff) |
Merge pull request #69 from tuncer/repo-url
Update rebar repo urls
-rw-r--r-- | rebar.config.sample | 4 | ||||
-rw-r--r-- | src/rebar_deps.erl | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/rebar.config.sample b/rebar.config.sample index 9c0d2a2..d8d61fc 100644 --- a/rebar.config.sample +++ b/rebar.config.sample @@ -156,7 +156,7 @@ {deps, [application_name, {application_name, "1.0.*"}, {application_name, "1.0.*", - {git, "git://github.com/basho/rebar.git", {branch, "master"}}}, + {git, "git://github.com/rebar/rebar.git", {branch, "master"}}}, %% Dependencies can be marked as 'raw'. Rebar does not require %% such dependencies to have a standard Erlang/OTP layout %% which assumes the presence of either @@ -171,7 +171,7 @@ %% 'raw' subdirectories: get-deps, update-deps, check-deps, %% list-deps and delete-deps. {application_name, "", - {git, "git://github.com/basho/rebar.git", {branch, "master"}}, + {git, "git://github.com/rebar/rebar.git", {branch, "master"}}, [raw]}]}. %% == Subdirectories == diff --git a/src/rebar_deps.erl b/src/rebar_deps.erl index 17d196f..313deaa 100644 --- a/src/rebar_deps.erl +++ b/src/rebar_deps.erl @@ -233,9 +233,9 @@ info_help(Description) -> {deps, [application_name, {application_name, "1.0.*"}, {application_name, "1.0.*", - {git, "git://github.com/basho/rebar.git", {branch, "master"}}}, + {git, "git://github.com/rebar/rebar.git", {branch, "master"}}}, {application_name, "", - {git, "git://github.com/basho/rebar.git", {branch, "master"}}, + {git, "git://github.com/rebar/rebar.git", {branch, "master"}}, [raw]}]} ]). |