diff options
author | Alexander M Pickering <alex@cogarr.net> | 2024-12-18 22:01:07 -0600 |
---|---|---|
committer | Alexander M Pickering <alex@cogarr.net> | 2024-12-18 22:01:07 -0600 |
commit | 47c2cf4dda6f2b33db72b533f0b02539c57554dd (patch) | |
tree | 9359711e0a320df3ff035f99929f6824bb6436c5 | |
parent | a0b340fd40fab243bd33400b1789d1e47dcd2805 (diff) | |
download | yuescript-packaging-feat/inital_work.tar.gz yuescript-packaging-feat/inital_work.tar.bz2 yuescript-packaging-feat/inital_work.zip |
add lua version to build namefeat/inital_work
-rw-r--r-- | meta.lua | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -21,7 +21,7 @@ local compilers = {--[["mingw32",]]"mingw64"--[[,"clang32","clang64"]]} | |||
21 | local builds = {} | 21 | local builds = {} |
22 | 22 | ||
23 | for name, optimization, rel, flag, _, image, lua_version, _ in cartesian(optimizations, debug, compilers, lua_versions) do | 23 | for name, optimization, rel, flag, _, image, lua_version, _ in cartesian(optimizations, debug, compilers, lua_versions) do |
24 | local name = "yuescript-" .. name .. "-" .. rel .. "-" .. image | 24 | local name = "yuescript-" .. lua_version .. "-" .. name .. "-" .. rel .. "-" .. image |
25 | builds[name] = { | 25 | builds[name] = { |
26 | image = "image-luarocks-" .. lua_version .. "-" .. image, | 26 | image = "image-luarocks-" .. lua_version .. "-" .. image, |
27 | requires = { | 27 | requires = { |