summaryrefslogtreecommitdiff
path: root/rebar.config.sample
diff options
context:
space:
mode:
authorAdam Schepis <adam.schepis@gmail.com>2012-02-10 09:55:36 -0500
committerTuncer Ayaz <tuncer.ayaz@gmail.com>2012-03-31 19:21:25 +0200
commit03a026f38fde8eb2b39447eb25aa219d017989fd (patch)
tree2a8c25c365503c549916620eb371c4a968d29907 /rebar.config.sample
parent3469039201511d62d6d545ae8b54fae94dfd5e92 (diff)
downloadrebar-03a026f38fde8eb2b39447eb25aa219d017989fd.tar.gz
Add support for alternate dependency urls
This change adds the ability to use alternate urls for downloading dependencies. To make use of alternate urls run: rebar get-deps alt_urls=true
Diffstat (limited to 'rebar.config.sample')
-rw-r--r--rebar.config.sample5
1 files changed, 4 insertions, 1 deletions
diff --git a/rebar.config.sample b/rebar.config.sample
index b0c8637..0ffa884 100644
--- a/rebar.config.sample
+++ b/rebar.config.sample
@@ -113,7 +113,10 @@
{deps, [application_name,
{application_name, "1.0.*"},
{application_name, "1.0.*",
- {git, "git://github.com/basho/rebar.git", {branch, "master"}}}]}.
+ {git, "git://github.com/basho/rebar.git", {branch, "master"}}},
+ {application_name, "1.0.*",
+ {git, "git://github.com/basho/rebar.git", {branch, "master"}},
+ [{alt_url, "https://github.com/basho/rebar.git"}]}]}.
%% == Subdirectories ==