From 8337cff8dd9bea68a4e435b1674a3870e5e8be76 Mon Sep 17 00:00:00 2001 From: Alexander M Pickering Date: Fri, 22 Nov 2024 18:09:59 -0600 Subject: Fix build names --- meta.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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"]]} local builds = {} for version, _, name, optimization, rel, flag, _, image in cartesian(lua_versions, optimizations, debug, compilers) do for package_version,_ in pairs(compat_versions) do - local buildname = "lua-compat-53-" .. package_version .. "-" .. version .. "-" .. name .. "-" .. rel .. "-" .. image + local buildname = "lua-compat-53-" .. package_version:gsub("[%W]","-") .. "-" .. version .. "-" .. name .. "-" .. rel .. "-" .. image builds[buildname] = { image = "image-luarocks-" .. version.. "-" .. image, requires = { -- cgit v1.2.3-55-g6feb