util.dependencies: Reject Lua 5.1, Lua 5.2 or later is now required (see #1600)

This commit is contained in:
Kim Alvefur 2022-07-02 17:30:34 +02:00
parent 14fceee089
commit ada68efcc9

View file

@ -32,10 +32,10 @@ local function missingdep(name, sources, msg, err) -- luacheck: ignore err
end
local function check_dependencies()
if _VERSION < "Lua 5.1" then
if _VERSION < "Lua 5.2" then
print "***********************************"
print("Unsupported Lua version: ".._VERSION);
print("At least Lua 5.1 is required.");
print("At least Lua 5.2 is required.");
print "***********************************"
return false;
end