summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexander M Pickering <alex@cogarr.net>2024-11-22 18:09:59 -0600
committerAlexander M Pickering <alex@cogarr.net>2024-11-22 18:09:59 -0600
commit8337cff8dd9bea68a4e435b1674a3870e5e8be76 (patch)
tree4e9329988392c675f4ad8ce28f2463686ea17d6d
parent85e0617095154fac6558eceeef94fb3b7d60432c (diff)
downloadlua-compat-53-packaging-8337cff8dd9bea68a4e435b1674a3870e5e8be76.tar.gz
lua-compat-53-packaging-8337cff8dd9bea68a4e435b1674a3870e5e8be76.tar.bz2
lua-compat-53-packaging-8337cff8dd9bea68a4e435b1674a3870e5e8be76.zip
Fix build names
-rw-r--r--meta.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta.lua b/meta.lua
index fa491fd..ced6056 100644
--- a/meta.lua
+++ b/meta.lua
@@ -26,7 +26,7 @@ local compilers = {--[["mingw32",]]"mingw64"--[[,"clang32","clang64"]]}
26local builds = {} 26local builds = {}
27for version, _, name, optimization, rel, flag, _, image in cartesian(lua_versions, optimizations, debug, compilers) do 27for version, _, name, optimization, rel, flag, _, image in cartesian(lua_versions, optimizations, debug, compilers) do
28 for package_version,_ in pairs(compat_versions) do 28 for package_version,_ in pairs(compat_versions) do
29 local buildname = "lua-compat-53-" .. package_version .. "-" .. version .. "-" .. name .. "-" .. rel .. "-" .. image 29 local buildname = "lua-compat-53-" .. package_version:gsub("[%W]","-") .. "-" .. version .. "-" .. name .. "-" .. rel .. "-" .. image
30 builds[buildname] = { 30 builds[buildname] = {
31 image = "image-luarocks-" .. version.. "-" .. image, 31 image = "image-luarocks-" .. version.. "-" .. image,
32 requires = { 32 requires = {