You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@couchdb.apache.org by rn...@apache.org on 2014/09/07 17:26:16 UTC

couchdb commit: updated refs/heads/master to 38cc17d

Repository: couchdb
Updated Branches:
  refs/heads/master 70e9d571a -> 38cc17dea


Support passing in a complete URL for deps

closes #268


Project: http://git-wip-us.apache.org/repos/asf/couchdb/repo
Commit: http://git-wip-us.apache.org/repos/asf/couchdb/commit/38cc17de
Tree: http://git-wip-us.apache.org/repos/asf/couchdb/tree/38cc17de
Diff: http://git-wip-us.apache.org/repos/asf/couchdb/diff/38cc17de

Branch: refs/heads/master
Commit: 38cc17dea8a945c202b512afe2f0278c4fa8bed8
Parents: 70e9d57
Author: William Cummings <wc...@hubspot.com>
Authored: Sat Sep 6 17:58:20 2014 -0400
Committer: Robert Newson <rn...@apache.org>
Committed: Sun Sep 7 16:25:59 2014 +0100

----------------------------------------------------------------------
 rebar.config.script | 4 ++++
 1 file changed, 4 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/couchdb/blob/38cc17de/rebar.config.script
----------------------------------------------------------------------
diff --git a/rebar.config.script b/rebar.config.script
index 8e14f89..4e9a58d 100644
--- a/rebar.config.script
+++ b/rebar.config.script
@@ -50,6 +50,10 @@ DepDescs = [
 BaseUrl = "https://git-wip-us.apache.org/repos/asf/",
 
 MakeDep = fun
+    ({AppName, {url, Url}, Version}) ->
+        {AppName, ".*", {git, Url, Version}};
+    ({AppName, {url, Url}, Version, Options}) ->
+        {AppName, ".*", {git, Url, Version}, Options};
     ({AppName, RepoName, Version}) ->
         Url = BaseUrl ++ "couchdb-" ++ RepoName ++ ".git",
         {AppName, ".*", {git, Url, Version}};