Browse Source

Add {ref, Commit} form for rebar3 deps

Considering vmq_server is the first to use it, I suppose it's new.
Oh well that's just yet another way to specify deps in rebar.config.

:-)
Loïc Hoguin 10 years ago
parent
commit
17aa621b6d
1 changed files with 1 additions and 0 deletions
  1. 1 0
      core/deps.mk

+ 1 - 0
core/deps.mk

@@ -204,6 +204,7 @@ define dep_autopatch_rebar.erl
 							{hex, V} -> {hex, undefined, V};
 							{git, R} -> {git, R, master};
 							{M, R, {branch, C}} -> {M, R, C};
+							{M, R, {ref, C}} -> {M, R, C};
 							{M, R, {tag, C}} -> {M, R, C};
 							{M, R, C} -> {M, R, C}
 						end,