aboutsummaryrefslogtreecommitdiffstats
path: root/core/deps.mk
diff options
context:
space:
mode:
authorLoïc Hoguin <[email protected]>2015-07-03 10:11:15 +0200
committerLoïc Hoguin <[email protected]>2015-07-03 10:11:15 +0200
commit17aa621b6d27216de4610928ebc1ba19dd9d553c (patch)
tree3321ca53f0876826c5f7a7a7434981d995e64a67 /core/deps.mk
parentdd7ddb509163dd28ee1afc15a393fba2493656be (diff)
downloaderlang.mk-17aa621b6d27216de4610928ebc1ba19dd9d553c.tar.gz
erlang.mk-17aa621b6d27216de4610928ebc1ba19dd9d553c.tar.bz2
erlang.mk-17aa621b6d27216de4610928ebc1ba19dd9d553c.zip
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. :-)
Diffstat (limited to 'core/deps.mk')
-rw-r--r--core/deps.mk1
1 files changed, 1 insertions, 0 deletions
diff --git a/core/deps.mk b/core/deps.mk
index 45e24b7..789d750 100644
--- a/core/deps.mk
+++ b/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,