summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author最萌小汐 <sumneko@hotmail.com>2019-11-28 09:55:39 +0800
committer最萌小汐 <sumneko@hotmail.com>2019-11-28 09:55:39 +0800
commit03b947302aaed58d2c0abf90feac45a7a51d3385 (patch)
tree729ed63b2f3a2006eea6919a18ae0068548790bc
parent8b15b7c4dbe4ffc3bb517655a934b2b58c698664 (diff)
downloadlua-language-server-03b947302aaed58d2c0abf90feac45a7a51d3385.zip
修改编译提示
-rw-r--r--platform.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/platform.lua b/platform.lua
index 729b8e3e..5a4751b7 100644
--- a/platform.lua
+++ b/platform.lua
@@ -13,7 +13,7 @@ local exeDir = exePath:gsub('[^/\\]-$', '')
local dll = exePath:sub(-4) == '.exe' and '.dll' or '.so'
package.cpath = exeDir .. '?' .. dll
if not package.loadlib(exeDir..'bee'..dll, 'luaopen_bee_platform') then
- error([[It doesn't seem to support your OS, please let me know at https://github.com/sumneko/lua-language-server/issues]])
+ error([[It doesn't seem to support your OS, please build it in your OS, see https://github.com/sumneko/vscode-lua/wiki/Build]])
end
local fs = require 'bee.filesystem'