From 5d789283294cf247d58549019d2caf909ca4cdf4 Mon Sep 17 00:00:00 2001 From: Dave Smith Date: Fri, 20 Aug 2010 07:13:37 -0600 Subject: [PATCH] Fix bug 549; example deps in rebar.config.sample were wrong, as identified by David Dossot --- rebar.config.sample | 4 ++-- 1 file 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 ==