diff options
author | sumneko <sumneko@hotmail.com> | 2021-12-14 23:48:49 +0800 |
---|---|---|
committer | sumneko <sumneko@hotmail.com> | 2021-12-14 23:48:49 +0800 |
commit | af24e6d17e5dc39ad2ef04b1ede427a7c23d10f2 (patch) | |
tree | a0c2eaf40b2c7c5691ccfe4e7448d771f7826630 /make | |
parent | 4a5e54ebc7f9f22fb3a3b29fc152b0f573149a55 (diff) | |
download | lua-language-server-af24e6d17e5dc39ad2ef04b1ede427a7c23d10f2.zip |
remove `<platform>` folder
Diffstat (limited to 'make')
-rw-r--r-- | make/bootstrap.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/make/bootstrap.lua b/make/bootstrap.lua index e9e61c77..36b9ce96 100644 --- a/make/bootstrap.lua +++ b/make/bootstrap.lua @@ -49,7 +49,7 @@ local root; do sep = '/\\'
end
local pattern = "["..sep.."][^"..sep.."]+"
- root = package.cpath:match("([^;]+)"..pattern..pattern..pattern.."$")
+ root = package.cpath:match("([^;]+)"..pattern..pattern.."$")
arg[0] = root .. package.config:sub(1,1) .. 'main.lua'
end
root = root:gsub('[/\\]', package.config:sub(1,1))
|