Fix bug 549; example deps in rebar.config.sample were wrong, as identified by David Dossot

This commit is contained in:
Dave Smith 2010-08-20 07:13:37 -06:00
parent 101ea0f968
commit 5d78928329

View file

@ -100,9 +100,9 @@
%% name as an atom, eg. mochiweb, a name and a version (from the .app file), or %% 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 %% 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. %% 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.*"}, {application_name, "1.0.*"},
{hg, "http://bitbucket.org/basho/rebar/", "f3626d5858a6"}]}. {application_name, "1.0.*", {hg, "http://bitbucket.org/basho/rebar/", "f3626d5858a6"}}]}.
%% == Subdirectories == %% == Subdirectories ==