summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul J. Davis <paul.joseph.davis@gmail.com>2020-01-04 13:53:27 -0600
committerJan Lehnardt <jan@apache.org>2020-01-04 20:53:27 +0100
commit9dedf6ad35b05536e8c413b5d3bc2737d1b81cf7 (patch)
tree4f69d35d1f7653201be3017fafe3d8c1cc3d1cd9
parent3fc054d86f0844bdf851e402b05df5db08b1c230 (diff)
downloadcouchdb-9dedf6ad35b05536e8c413b5d3bc2737d1b81cf7.tar.gz
Blacklist all 21.x releases older than 21.2.3 (#2056)
This basically just extends the black list to cover the `21.{0,1}` release range. This is due to a compiler bug [1] which is a duplicate of [2]. [1] https://bugs.erlang.org/browse/ERL-981 [2] https://bugs.erlang.org/browse/ERL-807
-rw-r--r--rebar.config.script2
1 files changed, 1 insertions, 1 deletions
diff --git a/rebar.config.script b/rebar.config.script
index 39db180b5..79d3e0c32 100644
--- a/rebar.config.script
+++ b/rebar.config.script
@@ -86,7 +86,7 @@ case VerList of
[19 | _] -> NotSupported(VerString);
[20 | _] = V20 when V20 < [20, 3, 8, 11] -> BadErlang(VerString);
- [21, 2, N | _] when N < 3 -> BadErlang(VerString);
+ [21 | _] = V21 when V21 < [21, 2, 3] -> BadErlang(VerString);
[22, 0, N | _] when N < 5 -> BadErlang(VerString);
_ -> ok