summaryrefslogtreecommitdiff
path: root/rebar.config.script
diff options
context:
space:
mode:
Diffstat (limited to 'rebar.config.script')
-rw-r--r--rebar.config.script3
1 files changed, 1 insertions, 2 deletions
diff --git a/rebar.config.script b/rebar.config.script
index b41917f67..880ea3d5d 100644
--- a/rebar.config.script
+++ b/rebar.config.script
@@ -42,8 +42,7 @@ end.
case VerList of
[20 | _] = V20 when V20 < [20, 3, 8, 11] -> NotSupported(VerString);
[20 | _] = V20 when V20 >= [20, 3, 8, 11] -> ok;
- [21, 2] -> NotSupported(VerString);
- [21, 2, N | _] when N < 3 -> NotSupported(VerString);
+ [21 | _] = V21 when V21 < [21, 2, 3] -> NotSupported(VerString);
_ -> ok
end.