aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorV1K1NGbg <victor@ilchev.com>2024-07-23 16:15:19 +0300
committerV1K1NGbg <victor@ilchev.com>2024-08-05 20:49:17 +0300
commit4f434861ea892ebd04e1341b63bfa1540e2db73c (patch)
tree878b0984e72fbac8dd2813417b30de78775a7e97
parent8e130d79829622cf5d09d95226e32799a5737100 (diff)
downloadluarocks-4f434861ea892ebd04e1341b63bfa1540e2db73c.tar.gz
luarocks-4f434861ea892ebd04e1341b63bfa1540e2db73c.tar.bz2
luarocks-4f434861ea892ebd04e1341b63bfa1540e2db73c.zip
fix attempt 4
-rw-r--r--src/luarocks/core/util.lua2
-rw-r--r--src/luarocks/core/util.tl2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/luarocks/core/util.lua b/src/luarocks/core/util.lua
index fae8625a..f72f1ec6 100644
--- a/src/luarocks/core/util.lua
+++ b/src/luarocks/core/util.lua
@@ -192,7 +192,7 @@ function util.split_string(str, delim, maxNb)
192 for part, pos in string.gmatch(str, pat) do 192 for part, pos in string.gmatch(str, pat) do
193 nb = nb + 1 193 nb = nb + 1
194 result[nb] = part 194 result[nb] = part
195 lastPos = math.tointeger(tonumber(pos)) 195 lastPos = tonumber(pos)
196 if nb == maxNb then break end 196 if nb == maxNb then break end
197 end 197 end
198 198
diff --git a/src/luarocks/core/util.tl b/src/luarocks/core/util.tl
index 9b23c083..ffdb6bc4 100644
--- a/src/luarocks/core/util.tl
+++ b/src/luarocks/core/util.tl
@@ -192,7 +192,7 @@ function util.split_string(str: string, delim: string, maxNb?: number): {string}
192 for part, pos in string.gmatch(str, pat) do 192 for part, pos in string.gmatch(str, pat) do
193 nb = nb + 1 193 nb = nb + 1
194 result[nb] = part 194 result[nb] = part
195 lastPos = math.tointeger(tonumber(pos)) 195 lastPos = tonumber(pos) as integer
196 if nb == maxNb then break end 196 if nb == maxNb then break end
197 end 197 end
198 -- Handle the last field 198 -- Handle the last field