diff options
author | Hisham Muhammad <hisham@gobolinux.org> | 2025-01-03 12:19:38 -0300 |
---|---|---|
committer | Hisham Muhammad <hisham@gobolinux.org> | 2025-01-03 13:17:28 -0300 |
commit | 3645ed60480e2b8392ce4f21f3ce77611dabd5cf (patch) | |
tree | c22a6fe2700b3aa726fecfe0f830632d88328774 | |
parent | 2d4a87e4765756a0e6df024ccd52972590f2923d (diff) | |
download | luarocks-3645ed60480e2b8392ce4f21f3ce77611dabd5cf.tar.gz luarocks-3645ed60480e2b8392ce4f21f3ce77611dabd5cf.tar.bz2 luarocks-3645ed60480e2b8392ce4f21f3ce77611dabd5cf.zip |
rockspec: make order type more lenient
See https://github.com/teal-language/tl/pull/890#issuecomment-2569388264
-rw-r--r-- | src/luarocks/type/rockspec.tl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/luarocks/type/rockspec.tl b/src/luarocks/type/rockspec.tl index 5db0c4c4..599c13ce 100644 --- a/src/luarocks/type/rockspec.tl +++ b/src/luarocks/type/rockspec.tl | |||
@@ -1,5 +1,5 @@ | |||
1 | local record type_rockspec | 1 | local record type_rockspec |
2 | order: Ordering<string> | 2 | order: Ordering<number | string> |
3 | rockspec_format: string | 3 | rockspec_format: string |
4 | end | 4 | end |
5 | 5 | ||