summaryrefslogtreecommitdiff
path: root/make.lua
diff options
context:
space:
mode:
Diffstat (limited to 'make.lua')
-rw-r--r--make.lua5
1 files changed, 3 insertions, 2 deletions
diff --git a/make.lua b/make.lua
index 466fe4a4..3be875c5 100644
--- a/make.lua
+++ b/make.lua
@@ -4,6 +4,7 @@ local exe = platform.OS == 'Windows' and ".exe" or ""
lm.bindir = "bin"
+---@diagnostic disable-next-line: codestyle-check
lm.EXE_DIR = ""
if platform.OS == 'macOS' then
@@ -49,7 +50,7 @@ lm:source_set 'lpeglabel' {
}
lm:executable "lua-language-server" {
- deps = {"lpeglabel", "source_bootstrap", "code_format"},
+ deps = { "lpeglabel", "source_bootstrap", "code_format" },
includes = {
"3rd/bee.lua",
"3rd/bee.lua/3rd/lua",
@@ -67,7 +68,7 @@ lm:executable "lua-language-server" {
lm:copy "copy_bootstrap" {
input = "make/bootstrap.lua",
- output = lm.bindir.."/main.lua",
+ output = lm.bindir .. "/main.lua",
}
lm:build 'copy_vcrt' {