summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDave Smith <dizzyd@dizzyd.com>2010-08-20 07:13:37 -0600
committerDave Smith <dizzyd@dizzyd.com>2010-08-20 07:13:37 -0600
commit5d789283294cf247d58549019d2caf909ca4cdf4 (patch)
tree1913552491a55b383934544ecfec4b888c28e4c5
parent101ea0f96841f535f05e7f1f398ce551a0426e5f (diff)
Fix bug 549; example deps in rebar.config.sample were wrong, as identified by David Dossot
-rw-r--r--rebar.config.sample4
1 files changed, 2 insertions, 2 deletions
diff --git a/rebar.config.sample b/rebar.config.sample
index ad414d3..60944d1 100644
--- a/rebar.config.sample
+++ b/rebar.config.sample
@@ -100,9 +100,9 @@
%% name as an atom, eg. mochiweb, a name and a version (from the .app file), or
%% an application name, a version and the SCM details on how to fetch it (SCM
%% type, location and revision). Rebar currently support git, hg, bzr and svn.
-{deps, [application_name, {application_name, "1.0.*"},
+{deps, [application_name,
{application_name, "1.0.*"},
- {hg, "http://bitbucket.org/basho/rebar/", "f3626d5858a6"}]}.
+ {application_name, "1.0.*", {hg, "http://bitbucket.org/basho/rebar/", "f3626d5858a6"}}]}.
%% == Subdirectories ==