diff options
author | Alexander M Pickering <alex@cogarr.net> | 2024-08-05 18:46:32 -0500 |
---|---|---|
committer | Alexander M Pickering <alex@cogarr.net> | 2024-08-05 18:46:32 -0500 |
commit | 5a9830ffb39e4890bde39d85fa41092ef1592e78 (patch) | |
tree | 5ee24b0362d7bd039ce33dce17de71334bcb6aa0 | |
parent | 132902d89b0e751fa3b938c506aed13679d02caf (diff) | |
download | luafilesystem-packaging-5a9830ffb39e4890bde39d85fa41092ef1592e78.tar.gz luafilesystem-packaging-5a9830ffb39e4890bde39d85fa41092ef1592e78.tar.bz2 luafilesystem-packaging-5a9830ffb39e4890bde39d85fa41092ef1592e78.zip |
Update variable names
-rw-r--r-- | meta.lua | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -41,7 +41,7 @@ end | |||
41 | for version, link, name, optimization, rel, flag, _, image in cartesian(lua_versions, optimizations, debug, compilers) do | 41 | for version, link, name, optimization, rel, flag, _, image in cartesian(lua_versions, optimizations, debug, compilers) do |
42 | local name = "lua" .. version .. "-" .. name .. "-" .. rel .. "-" .. image | 42 | local name = "lua" .. version .. "-" .. name .. "-" .. rel .. "-" .. image |
43 | builds[name] = { | 43 | builds[name] = { |
44 | image = "image-luafilesystem-" .. image .. "-lua" .. lua_ver, | 44 | image = "image-luafilesystem-" .. image .. "-lua" .. version, |
45 | requires = { | 45 | requires = { |
46 | {"git", "luafilesystem"}, | 46 | {"git", "luafilesystem"}, |
47 | {"cicd","lua" .. version .. "-" .. name .. "-" .. rel .. "-" .. image}, | 47 | {"cicd","lua" .. version .. "-" .. name .. "-" .. rel .. "-" .. image}, |
@@ -51,7 +51,7 @@ for version, link, name, optimization, rel, flag, _, image in cartesian(lua_vers | |||
51 | }, | 51 | }, |
52 | env = { | 52 | env = { |
53 | CFLAGS = optimization .. " " .. flag, | 53 | CFLAGS = optimization .. " " .. flag, |
54 | rockver = lua_ver:gsub("(%d)(%d)$","%1.%2") | 54 | rockver = version:gsub("(%d)(%d)$","%1.%2") |
55 | }, | 55 | }, |
56 | } | 56 | } |
57 | end | 57 | end |