aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHisham Muhammad <hisham@gobolinux.org>2025-01-15 23:46:45 -0300
committerHisham Muhammad <hisham@gobolinux.org>2025-01-15 23:49:49 -0300
commit1ab24ce81191495bce09458fc55e65fdecb75aab (patch)
treee571466853730723d0c3b38efd24eb4632233780
parent73790dfc3524a6eddef4dd028cb0371a07675ef0 (diff)
downloadluarocks-1ab24ce81191495bce09458fc55e65fdecb75aab.tar.gz
luarocks-1ab24ce81191495bce09458fc55e65fdecb75aab.tar.bz2
luarocks-1ab24ce81191495bce09458fc55e65fdecb75aab.zip
fix: interfaces cannot contain record definitions
-rw-r--r--src/luarocks/core/types/build.d.tl6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/luarocks/core/types/build.d.tl b/src/luarocks/core/types/build.d.tl
index 35b42005..08a94712 100644
--- a/src/luarocks/core/types/build.d.tl
+++ b/src/luarocks/core/types/build.d.tl
@@ -1,13 +1,13 @@
1local record build 1local record build
2 2
3 interface Build 3 interface Build
4 record Install 4 interface Install
5 lua: {(string|integer): string} 5 lua: {(string|integer): string}
6 lib: {(string|integer): string} 6 lib: {(string|integer): string}
7 conf: {(string|integer): string} 7 conf: {(string|integer): string}
8 bin: {(string|integer): string} 8 bin: {(string|integer): string}
9 end 9 end
10 10
11 type: string 11 type: string
12 install: Install 12 install: Install
13 copy_directories: {string} 13 copy_directories: {string}
@@ -33,4 +33,4 @@ local record build
33 end 33 end
34end 34end
35 35
36return build \ No newline at end of file 36return build