diff options
author | Alexander M Pickering <alex@cogarr.net> | 2024-11-22 18:09:59 -0600 |
---|---|---|
committer | Alexander M Pickering <alex@cogarr.net> | 2024-11-22 18:09:59 -0600 |
commit | 8337cff8dd9bea68a4e435b1674a3870e5e8be76 (patch) | |
tree | 4e9329988392c675f4ad8ce28f2463686ea17d6d | |
parent | 85e0617095154fac6558eceeef94fb3b7d60432c (diff) | |
download | lua-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.lua | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -26,7 +26,7 @@ local compilers = {--[["mingw32",]]"mingw64"--[[,"clang32","clang64"]]} | |||
26 | local builds = {} | 26 | local builds = {} |
27 | for version, _, name, optimization, rel, flag, _, image in cartesian(lua_versions, optimizations, debug, compilers) do | 27 | for 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 = { |