summaryrefslogtreecommitdiff
path: root/make.lua
diff options
context:
space:
mode:
Diffstat (limited to 'make.lua')
-rw-r--r--make.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/make.lua b/make.lua
index 615f1f35..e532bbf1 100644
--- a/make.lua
+++ b/make.lua
@@ -55,7 +55,7 @@ lm:executable "lua-language-server" {
}
local platform = require 'bee.platform'
-local exe = platform.OS == 'Windows' and ".exe" or ""
+local exe = platform.os == 'windows' and ".exe" or ""
lm:copy "copy_lua-language-server" {
inputs = "$bin/lua-language-server" .. exe,